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

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.

Reply
electrobrit
Post Patron
Post Patron

need text if no data shows up in table

I have a table that depending on the filter, may have no data for that selection.
If no data shows, I would like to have a card that comes up "No data for this period".
I can do this off the table or there is another card on there (totals) that I could say if that value is 0 then text should be "no data for this period". i can duplicate the totals and just make another card. I don't know the dax, I've tried a few things but not working. How can I do this?


1 ACCEPTED SOLUTION
electrobrit
Post Patron
Post Patron

helped myself used this

IF( 
    Table[Column] = BLANK(),
    "No data",
    BLANK()
)

View solution in original post

1 REPLY 1
electrobrit
Post Patron
Post Patron

helped myself used this

IF( 
    Table[Column] = BLANK(),
    "No data",
    BLANK()
)

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.