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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

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

@Anonymous 

 

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.
Anonymous
Not applicable

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors