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
Glibberg
Regular Visitor

How to pull TEXT data from your data set and put it on a Dashboard

I have a data like this and filter for ID on a Dashboard.

How to make a card on a dashboard such that when select ID on the filter, for example 1001, this card shows 'abc', but when I select 2000 this card shows 'xyz'? Thank you!

idtext
1001ABC
1001abc
1001abc
2000xyz
2000xyz
2000xyz
1 ACCEPTED SOLUTION
olgad
Super User
Super User

Hi,
put first text?

olgad_0-1674059807464.png

olgad_1-1674059836316.png

what do you want to see when nothing is selected in the filter?

 

 


DID I ANSWER YOUR QUESTION? PLEASE MARK MY POST AS A SOLUTION! APPRECIATE YOUR KUDO/LIKE!
PROUD TO BE A SUPER USER!
Best Stories, Interesting Cases: PowerBI Storytime Newsletter
Linkedin Profile: Linkedin
YouTube Channel: PowerBI Storytime

View solution in original post

5 REPLIES 5
Glibberg
Regular Visitor

Thank you. 

olgad
Super User
Super User

Hi,
put first text?

olgad_0-1674059807464.png

olgad_1-1674059836316.png

what do you want to see when nothing is selected in the filter?

 

 


DID I ANSWER YOUR QUESTION? PLEASE MARK MY POST AS A SOLUTION! APPRECIATE YOUR KUDO/LIKE!
PROUD TO BE A SUPER USER!
Best Stories, Interesting Cases: PowerBI Storytime Newsletter
Linkedin Profile: Linkedin
YouTube Channel: PowerBI Storytime

Thank you. When nothing is selected I want to see a blank page.

Create this measure:  Measure  = If(HASONEVALUE(sel[id]), FIRSTNONBLANKVALUE(sel[text],max(sel[text])))
then you see 
olgad_0-1674116144960.png

instead of blank you could have "Select ID" or anything you want.

olgad_1-1674116201910.png
olgad_2-1674116280560.png

 

 


DID I ANSWER YOUR QUESTION? PLEASE MARK MY POST AS A SOLUTION! APPRECIATE YOUR KUDO/LIKE!
PROUD TO BE A SUPER USER!
Best Stories, Interesting Cases: PowerBI Storytime Newsletter
Linkedin Profile: Linkedin
YouTube Channel: PowerBI Storytime
amitchandak
Super User
Super User

@Glibberg , You need measure like

Max(Table[Text])

 

or

 

Concatenatex(Values(Table[Text]) , [text])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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