Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
How can i use and condition in if condition?requirement is like,when they select high and medium count should be 0 otherwisse
count({<rating={'low','TBD','very low'}>}ID) i tried if condition with and but whenever i am making selection of high and medium it is not showing 0
rating
high,
low,
medium,
TBD,
very low]
Please help me to resolve this.
Regards,
shruthi
May be this:
Alt(Count({<rating={'low','TBD','very low'}>}ID), 0)
or
RangeSum(Count({<rating={'low','TBD','very low'}>}ID), Sum({1} 0))
both are not working for my requirement ,Rating is provided as filter,so whenever user make selection of high and medium it should show 0, else by default it should show count for low ,TBD and very low
Are you trying to see this in a straight table? Have you made sure to unchec 'Suppress Zero-Values' on the presentation tab?
i am trying in text box as i need to display only counts
Try this:
Count({<rating *= {'low','TBD','very low'}>} ID)
Try This
=Count({<Rating = {'Low','very Low','TBD'},Rating -= {'High','Medium'}>}ID)
Try like....
=if(Match(getfieldselections(Rating),'high','medium'),0,count({<Rating={'low','TBD','very low'}>}ID))
Hi if i select either high or medium it is giving 0 but but when i select both it is giving count,it should give 0 when i select both
Thank you