Forum Discussion
Anonymous
6 years agoNot applicable
blank count
Hi all,
i want create a kpi object . count of blank seats from the table SELECT * from Personal.fact_AIS_Specific ;
how can i create a measure?
Anonymous
try measure like
CALCULATE(COUNTROWS(Table), ISBLANK(Table[seats]))Anonymous , Try
calculate(countrows(Personal),isblank(Personal[fact_AIS_Specifi]))
5 Replies
- az38Community Champion
Anonymous
try measure like
CALCULATE(COUNTROWS(Table), ISBLANK(Table[seats]))- AnonymousNot applicable
im trying this is it fine?
COUNTBLANK(Table[Seats])- az38Community Champion
Anonymous
that's great, I never used this function before 🙂
but pay attention -
If no rows are found that meet the condition, blanks are returned.
- amitchandakSuper User
Anonymous , Try
calculate(countrows(Personal),isblank(Personal[fact_AIS_Specifi]))