Forum Discussion
MasterSonic
Helper IV
4 years agoPower Query M calculated column countif - minus - count blanks
Hi guys I am looking for a help with creating column based on this logic: count rows where values is not "Day" minus count of blank values Could you help me with that please.
- 4 years ago
MasterSonic , Try a dax calculated column of measure
countx(filter(Table, Table[value]<> "Day"), Table[value]) - countrow(filter(Table, isblank(Table[Value])))
amitchandak
Super User
4 years agoMasterSonic , Try a dax calculated column of measure
countx(filter(Table, Table[value]<> "Day"), Table[value]) - countrow(filter(Table, isblank(Table[Value])))