I have Table1.
I have Radio2.
I have Label.
Label1 has the following formula. I am trying to count the number rows in the data source that have 'ACTIVE' if "ACTIVE" is chosen in Radio2, or the number of rows that have 'CML DIGITAL' if "CML DIGITAL" is chosen in Radio2.
I can only seem to get the entire count - 1008.
If(IsBlank(Radio2.Selected.Value),CountRows(Client_Collection),If(Radio2.Selected.Value = "ACTIVE" && ("ACTIVE" in Client_Collection.Subscriber_Status),CountRows(Client_Collection)))
