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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
I have two problem and would like to seek for expert help on what dax should I used:
Picture 2
However, the % of grant total seem off. What I want to achive is % / Total by each date.
Each date, the % should be 100%.
Question: Any dax/chart I can use to achive to show the % over each date ?
Hi @alexgoh
To get the latest comment you may try (calculated column in TableA)
Latest Comment =
MAXX (
TOPN ( 1, FILTER ( TableB, TableB[ID] = TableA[ID] ), TableB[Date] ),
TableB[Comment]
)
To get the correct % try using CALCULATE - ALL ( 'Tab;e'[Mutual Consensus] ) at the denominator
Hi, @alexgoh
Try with treats function
Create measure
Comment= calculate ('tableb'[comment], treats ('tablea'[Id], 'tableb'[I'd]
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly