Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a table wiith column name Approval status as
0.created
1,approved
2.cancelled
how can i count the individual 0,1,2
Hi Gowtham,
This is a duplicate thread, you created one more thread. Anyway trythis solution
Chart : Straight Table
Dimension: [Approval Status]
Expression: Count([Approval Status])
Or use [Approval Status] as list box and select Show Frequency option in General tab.
Regards,
Jagan.
I want to represent in text box
HI,
Try like this
=Concat(Aggr(Status & ':' & Count(Status), Status), Chr(13))
Regards,
Jagan.