Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 8 | |
| 8 | |
| 7 |