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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Werbenmanjensen
Frequent Visitor

Putting a Row Value into a Card Visual

Hello, 

 

I am struggling with something that seems like it should be so easy, but I cannot find a solution on the forums or online. I am trying to pull a specific value from a row in a table and put it onto a card. I want to pull for instance AQC Tested value "3273" and have the "3273" show up on a card visual. Every code variation I have tried in DAX from HASONEVALUE, VALUE, CALCULATE, ROW, TOPN, etc. are not working. How do I pull that value (eg. 3273) from the row and put it into a measure so that I can display it on a card? HELP!

Werbenmanjensen_0-1665518099342.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Werbenmanjensen ,  A measure, Use Max if need

 

calculate(Sum(Table[Value for FOC/AOQ Testing]), Table[Totle for FOC/AOQ Testing] = "AQC Tested") )

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Werbenmanjensen ,  A measure, Use Max if need

 

calculate(Sum(Table[Value for FOC/AOQ Testing]), Table[Totle for FOC/AOQ Testing] = "AQC Tested") )

It took me a second to get this, but it worked!! I ended with

AQC FQC Values = CALCULATE(SUM('Batches Synthesized'[Values for FQC/AQC Testing]), 'Batches Synthesized'[Titles for FQC/AQC Testing]= "AQC Tested") "

 

Thank you!!

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors