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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
BhagyaRay14
New Member

Replacing Blank values

Hi Team,

I have created a measure : 

Status Of Completion =
VAR CourseName = SELECTEDVALUE( TRANSACTIONS_EXP[COMPLETION_STATUS] )
RETURN
IF( CourseName = BLANK(), "NOT COMEPLTE", CourseName )
 
this is the result i get it 
 
BhagyaRay14_0-1692886861493.png

I want to replace the blank values with Not Complete

Kindly anyone help ....

5 REPLIES 5
tamerj1
Super User
Super User

Hi @BhagyaRay14 

Please try

Status Of Completion =
IF (
ISEMPTY ( TRANSACTIONS_EXP ),
"NOT COMEPLTE",
SELECTEDVALUE ( TRANSACTIONS_EXP[COMPLETION_STATUS], "NOT COMEPLTE" )
)

BhagyaRay14_0-1692892261218.png

 

 

Sorry didn't work

not sure what to do..

If anything kindly let me know

@BhagyaRay14 

You need to use dimension tables one for emails and one for courses 

Syk
Super User
Super User

Try this

 

Status Of Completion =
VAR CourseName = SELECTEDVALUE( TRANSACTIONS_EXP[COMPLETION_STATUS] )
RETURN
COALESCE(CourseName,"NOT COMPLETE")

 

sorry team,

tried , didn't work..

 

if any other solution please let me know

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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