Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
i need to get count of city which is having less than 4 headcount in a text box.
Example
city , Headcount
A, 10
B, 20
C, 2
D, 1
F, 3
In textbox i need 3 , because city c, d f headcount is less than 4
Thanks in advance
In case if you have more details in your data
Count({<city={"=sum(Headcount)<4"}>} city)
=Count({<Headcount={"<4"}>} city)
Try with
=Count({<Headcount={'<4'}>} city)
Hi Shan,
Try below one:
=Count({<Headcount={'<4'}>} Distinct city)
Thanks,
Arvind Patil
Hi Shan,
Expression for your Output:
=Count({<Headcount -= {">4"}>}City)
Regards,
Rajan
In case if you have more details in your data
Count({<city={"=sum(Headcount)<4"}>} city)
Hi kushal,
Thanks worked perfectly