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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
eric_s
Frequent Visitor

measure result is a specific row, show the text from another cell in that same row in a new tile

Hello Power BI Community,

Can somebody help me with my problem?

In my Excel table of 5 colums I gather incident information. 

Table name; YTD_Status_Overview

eric_s_0-1610525428906.png

On a PowerBi tile I show Date information of when the last incident (LastYesMAASTRICHT) is reported, 03/01/2021 in this case.

Measure code;  

LastYesMAASTRICHT = CALCULATE(LASTDATE(YTD_Status_Overview[Date_Of_Incident]),FILTER(YTD_Status_Overview,[Set]="Yes"))

 

Of that same row I want to show the Comment information (injury test 03-01) on another tile. What would be the code for this measure?

Thanks in advance, Eric

2 ACCEPTED SOLUTIONS
Pragati11
Super User
Super User

Hi @eric_s ,

 

Based on just seeing the data in your screesnhot as I can't try it because you haven't attached the sample data file, Just try the following measure:

 

LastIncident = 

var lastDate = CALCULATE(LASTDATE(YTD_Status_Overview[Date_Of_Incident]), FILTER(YTD_Status_Overview,[Set]="Yes" ))

RETURN

CALCULATE(MAX(YTD_Status_Overview[Comment]), FILTER(YTD_Status_Overview, [Set]="Yes" && YTD_Status_Overview[Date_Of_Incident] = lastDate))

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

View solution in original post

Thank you very much Pragati, your code works in my dashboard.
Gr, Eric

View solution in original post

3 REPLIES 3
Pragati11
Super User
Super User

Hi @eric_s ,

 

Based on just seeing the data in your screesnhot as I can't try it because you haven't attached the sample data file, Just try the following measure:

 

LastIncident = 

var lastDate = CALCULATE(LASTDATE(YTD_Status_Overview[Date_Of_Incident]), FILTER(YTD_Status_Overview,[Set]="Yes" ))

RETURN

CALCULATE(MAX(YTD_Status_Overview[Comment]), FILTER(YTD_Status_Overview, [Set]="Yes" && YTD_Status_Overview[Date_Of_Incident] = lastDate))

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Thank you very much Pragati, your code works in my dashboard.
Gr, Eric

Hi @eric_s ,

 

If the above solution works, please Accespt it as a solutions so that others can be also benefit from it.

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.