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
Alrythmond
Helper I
Helper I

Assigning "Not Assigned" to blank values in my table without editing the dataset

Please help me, how do I assign "Not Assigned" to my blank values

123123.PNG

This formula returns an error
Market Segment Blanks = IF(ISBLANK(SUMMARIZE(R_ESURVEY_CONSOLIDATED_V001,R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment])),"Not Assigned",SUMMARIZE(R_ESURVEY_CONSOLIDATED_V001,R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment]))

this other formula only returns 1 value

Market Segment Blanks = IF(ISBLANK(MAX(R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment])),"Not Assigned",MAX(R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment])
3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@Alrythmond 

 

You'll need to add a calculated column.

Column =
IF (
    R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment] = BLANK (),
    "Not Assigned",
    R_ESURVEY_CONSOLIDATED_V001[Proj: Market Segment]
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

it works on a calculated column, but I was thinking of putting it in a measure, is it possible?

If anyone has the answer for this still. My data set is too large to be adding calculated columns really need to do it in measure if anyone has a workaround?

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.