Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe'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
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
On a PowerBi tile I show Date information of when the last incident (LastYesMAASTRICHT) is reported, 03/01/2021 in this case.
Measure code;
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
Solved! Go to Solution.
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
Thank you very much Pragati, your code works in my dashboard.
Gr, Eric
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
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 51 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 64 | |
| 39 | |
| 33 | |
| 23 |