Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi all!
I have a simple data model with 3 tables.
The Actual Values and Extraction table are linked to the calendar table.
The extraction table contains a snapshot for every Month.
Extraction Year-Week | Article | Value |
2023-Jan | A | 50 |
2023-Jan | B | 60 |
2023-Feb | A | 50 |
Now I would like to create a matrix visual with the individual extractions on rows and
In the end I would like to have such kind visualization:
How would you build the data model and measures for that kind of objective?
Hi @joshua1990
I recommend that you add another table which has distinct extraction months. This table should not be connected to the calendar table so it won't be affected by the calendar table. And disable or delete the relationship between the calendar table and the Exctraction table.
Then create the following measure and add it to the matrix.
Measure = IF(MAX('Date'[Date])<MIN('ExtractionMonths'[Extraction Start Date]),SUM(ActualTable[Value]),SUM('ExctractionTable'[Value]))
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @joshua1990
Yes, you need an additional measure to summarize the total.
Measure 2 = SUMX(SUMMARIZE('Date','Date'[YearMonth],"SumOfValue",[Measure]),[SumOfValue])
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
@v-jingzhang : Thanks a lot, appreciate. But the total (column subtotal) is wrong. It shows me 120 for 2023-Feb
If you need further information, just let me know. I am grateful for any tips that you can share.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
19 | |
18 | |
18 | |
15 |
User | Count |
---|---|
39 | |
22 | |
18 | |
15 | |
12 |