The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
User | Count |
---|---|
10 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
22 | |
14 | |
14 | |
9 | |
7 |