Hello,
I try make Expressions to help to count some specific data in column, I just want to count 1,2,3 to give total count of them.
Solved! Go to Solution.
Then it needs something like..
COUNT(SELECT(Table[KeyColumn],AND([Equipment]=[_THISROW].[Equipment],NUMBER([TRC])<4)))
Try to use.. COUNT(SELECT(Table[KeyColumn],[TRC]<4))
He give me that error
To be more clear i have this two table first table[Collection] is the source of data
second table for user when he chose input, he should him total of count of 1,2,3
Do you need to count numbers 1, 2 and 3 from the whole table or only from that specific equipment?
specific equipment
It sounds the [TRC] is a text column, and that's why the error. You can either change the column type to a number or use COUNT(SELECT(Table[KeyColumn],NUMBER([TRC])<4))
i try it but he gives me not correct answer.
Then it needs something like..
COUNT(SELECT(Table[KeyColumn],AND([Equipment]=[_THISROW].[Equipment],NUMBER([TRC])<4)))
thank you so much for help it work
You're welcome!
User | Count |
---|---|
23 | |
15 | |
4 | |
3 | |
3 |