Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In my Excel source on Incidents, I have a column called "Harm". I want a bar chart created when Harm = yes since there are yes and no values in that column. I want to get the count of 'yes' values only. Please let me know how the expression should be. Thanks
Sum ( if( Harm='yes', 1,0))
or
substringcount( concat( Harm,',') , 'yes')
Sorry I want to get the count when Harm = yes.
Sum ( if( Harm='yes', 1,0))
or
substringcount( concat( Harm,',') , 'yes')
Thanks Jonathan It worked