Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Please help,
I will like to create a bar chart or pie chart that will count cells with "date" values, cells with "NA" values and "empty" cells.
Please refer to the image to help out here.
Thanks
You could use a Calculated Dimension like:
=if(trim(DateCompleted)='', 'Empty'
,if(DateCompleted='NA', 'NA'
,'Date'
))
and an Expression
=sum(1)
-Rob
You could use a Calculated Dimension like:
=if(trim(DateCompleted)='', 'Empty'
,if(DateCompleted='NA', 'NA'
,'Date'
))
and an Expression
=sum(1)
-Rob
Thanks Rob! You saved the day!
Works perfectly!
And I changed the 'Background Color' in the 'Expression' tab.