Forum Discussion
emf_efab
5 years agoFrequent Visitor
Count First Value in Column - for a day
I need to count the Values "Estado" (Bold & Blue) in the Column for each day, not Repeating the same ESTADO, reaching a final result of 10, over the 13 rows. Example: 1Feb = 1 2Feb = 1 26Feb...
- 5 years ago
Hi emf_efab
You can do this with this measure
Count Estado = COUNTROWS(DISTINCT(SELECTCOLUMNS('Control Emails', "NewCol", 'Control Emails'[Fecha]&'Control Emails'[Estado])))Regards
Phil
- 5 years ago
Thank you very much Phil, regards Steve
PhilipTreacy
5 years agoSuper User
Hi emf_efab
You can do this with this measure
Count Estado = COUNTROWS(DISTINCT(SELECTCOLUMNS('Control Emails', "NewCol", 'Control Emails'[Fecha]&'Control Emails'[Estado])))
Regards
Phil
emf_efab
5 years agoFrequent Visitor
Thank you very much Phil, regards Steve