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

count if greater than or equal to 50% and lesser than or equal to 75%

Hi,

Below is my data. I would like to count the date entries if the In Octets % is greater than or equal to 50% and lesser than or equal to 75%. The result has to be 4. Please help to achieve the expression.

                                                                                                                                                                                   

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

=COUNT(DISTINCT IF([In Octets %] >= 50 and [In Octets %] <=75,Date))

View solution in original post

2 Replies
MK_QSL
MVP
MVP

=COUNT(DISTINCT IF([In Octets %] >= 50 and [In Octets %] <=75,Date))

robert_mika
Master III
Master III

=Count({$< [In Octets %] = {">=50<=75"}>} DISTINCT Date)