Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How Can I do this set analysis?

Hi all,

This Field "CATEGORY" has three records namely Laptop,Desktop,Workstation.And what i basically want to count the total number of Laptops, Desktop and Workstation seperately to display them.

Thanks

2 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     You mean like this

     Count({<Category={'Laptop'}>} FieldName)

     Count({<Category={'Desktop'}>} FieldName)

     Count({<Category={'Workstation'}>} FieldName)

Or use Straight table have category as dimension

     Count(FieldName) as Expression

FieldName can be any unique field or You can use Category

Celambarasan

Anonymous
Not applicable
Author

Thanks Celambarasan for the quick response awesome!