Forum Discussion
pschnei
9 years agoRegular Visitor
SAP BO to DAX
Hi there,
Can someone help me to translate this simple query in DAX language?
I don't understand how to transform the WHERE clause.
Thank you for your help
Paola
=Count([Groupment Id]) Where (Not (IsNull([Registration status])))
2 Replies
- Vvelarde
Community Champion
Hi, try this:
Measure=Calculate(Count(Table[GroupID]),Filter(Table, Table[RegistrationStatus]<>Blank))
- v-jiascu-msft
Microsoft Employee