Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
i want to execute this request in qlik:
select count(field_1) where field2='var1'
Hi youssef
you can use the
count({$<field2={'var1'}>}Field_1) --if you use the static value.
if its a varaible then you should try
count({<field2={$(var1)}>}Field_1)
with regards
Harshita Gaur
Hi,
Please try
Count({$<Field_2={'var1'}>}Field_1)
Try this if you want to do it in the script:
Load
count(field_1) as Count_Field1,
where field2='var1'
group by field2
;
Hi youssef
you can use the
count({$<field2={'var1'}>}Field_1) --if you use the static value.
if its a varaible then you should try
count({<field2={$(var1)}>}Field_1)
with regards
Harshita Gaur