Forum Discussion
raymondxie
9 years agoHelper II
Filter with calculated measures
I have a table on a database which contains a field Validated of varchar. I need to count the number of records with [Validated] == 'Y', I created a measure with the following formula: Validated...
- 9 years ago
Validated = CALCULATE ( Count (Result[ID]), FILTER ( Result, [Validated] = "Y") )
- 9 years ago
I changed from creating column to creating measure and it works now, thank you very much. Greg_Deckler
Greg_Deckler
9 years agoCommunity Champion
Ah, I was wondering, because you said "measure" in your first post so I was thinking that couldn't be the issue!!
raymondxie
9 years agoHelper II
sorry about that, I just started learning PowerBI.