Count Specific Data in column

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.

MohamedSalem999_2-1695744254802.png

 

 

 

 

Solved Solved
0 10 340
1 ACCEPTED SOLUTION

Then it needs something like..

COUNT(SELECT(Table[KeyColumn],AND([Equipment]=[_THISROW].[Equipment],NUMBER([TRC])<4)))

View solution in original post

10 REPLIES 10

Try to use.. COUNT(SELECT(Table[KeyColumn],[TRC]<4))

He give me that error

MohamedSalem999_0-1695746608412.png

 

To be more clear i have this two table first table[Collection] is the source of data 

 

MohamedSalem999_3-1695746954226.png

 

second table for user when he chose input, he should him total of count of 1,2,3

MohamedSalem999_4-1695746954267.png

 

 

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.

MohamedSalem999_0-1695747119177.png

 

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!

Top Labels in this Space