Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

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:

MissingActors = ISBLANK(Merge1[result.actor]))
and then summarize it.
but i get this:
A single value for column 'result.actor' in table 'Merge1' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.
 
How can i solve this?
 
 
1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
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.

 

View solution in original post

5 REPLIES 5
v-yuta-msft
Community Support
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.

 

MartynRamsden
Solution Sage
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.

Tahreem24
Super User
Super User

@Anonymous ,

 

Create custom field like below:

Column = if('Table'[Column1]=BLANK(),'Table'[Column2])

Capture.JPG

Please don't forget to hit THUMBS UP and Accept this as a solution if it helps you!

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
rajulshah
Super User
Super User

Hello @Anonymous,

 

May I have sample data or fields that are being used?

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-wi...
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
https://community.powerbi.com/t5/Community-Blog/Power-BI-Working-with-Non-Standard-Time-Periods/ba-p...
https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.