Forum Discussion
ISBLANK does not refer to data
Hi there,
it is my second day with power BI.
I want to display missing data (nulls) in each of field (non numeric). I dont know if that is the best approach but i have decided to create meassure like:
Anonymous ,
You need to add an aggregation like below:
MissingActors = ISBLANK ( MAX ( Merge1[result.actor] ) )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
5 Replies
- rajulshah
Resident Rockstar
Hello Anonymous,
May I have sample data or fields that are being used?
- amitchandak
Super User
Try
MissingActors = calcaulte(countrows(Merge1), ISBLANK(Merge1[result.actor]))Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners/ba-p/890814
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-trend/ba-p/882970
https://community.powerbi.com/t5/Community-Blog/Power-BI-Working-with-Non-Standard-Time-Periods/ba-p/881739
https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601
- Tahreem24
Super User
Anonymous ,
Create custom field like below:
Column = if('Table'[Column1]=BLANK(),'Table'[Column2])
Please don't forget to hit THUMBS UP and Accept this as a solution if it helps you!
- MartynRamsden
Solution Sage
Hi Anonymous
Try:
MissingActors = SUMX ( Merge1, ISBLANK ( Merge1[result.actor] ) )Best regards,
Martyn
If I answered your question, please help others by accepting it as a solution.
- v-yuta-msft
Community Support
Anonymous ,
You need to add an aggregation like below:
MissingActors = ISBLANK ( MAX ( Merge1[result.actor] ) )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.