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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
varshahrame
Frequent Visitor

Card Visual

Hi,

 

I have a card visual and I was able to successfully create a measure that would display a message when it is blank as such:

 

No Data_Total On Rent =
VAR _TotalOnRent =([Total On Rent])
return
IF(ISBLANK(_TotalOnRent),"No data for the selected criteria",_TotalOnRent)
 
However, it is not working for a Text field when it is blank, meaning my field is not appearing in the [ ] area when I type it in.
 
Any help is much appreciated, thank you.
 
 
3 REPLIES 3
varshahrame
Frequent Visitor

So I think the ISBLANK function will not work because the field I am pulling in is a table and not a scalar value. Is there a way around this?

varshahrame
Frequent Visitor

So that is not working for me, the field I have is called Risk Status, so there is a Low, Medium, High and then blank and my field risk status is not popping up when I start typing it in.

Syk
Super User
Super User

Try

No Data_Total On Rent = COALESCE([_TotalOnRent],"No Data for selected criteria")

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors