Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Team,
I have created a measure :
I want to replace the blank values with Not Complete
Kindly anyone help ....
Hi @BhagyaRay14
Please try
Status Of Completion =
IF (
ISEMPTY ( TRANSACTIONS_EXP ),
"NOT COMEPLTE",
SELECTEDVALUE ( TRANSACTIONS_EXP[COMPLETION_STATUS], "NOT COMEPLTE" )
)
Sorry didn't work
not sure what to do..
If anything kindly let me know
You need to use dimension tables one for emails and one for courses
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