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

Show the particular Count of status

Hi

I want to show particular count of Status without select a Status value.

Ex:

Status

Good

Better

Best

Good

Better

Best

Good

Better

Best

Good

Better

Best

In the above column without select a value "Good", I need show the count of Good

1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

hi two options:

count (if(Status='Good',Status))

count({<Status={'Good'}>}Status)

View solution in original post

2 Replies
lironbaram
Partner - Master III
Partner - Master III

hi two options:

count (if(Status='Good',Status))

count({<Status={'Good'}>}Status)

MK_QSL
MVP
MVP

Count({$<Status = {'Good'}>}Status)

or

Count({1<Status = {'Good'}>}Status)