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
Hi
I want to create a matrix chart with period date and region as coulumn header and category as row header ..
Values - to get the distinct count of the customer who have a order amount greater than a parameter value .
Also have to get the sum of the sales for each catergory .
Please help .
Solved! Go to Solution.
Hi, @mya
Based on your description, I have created some measures to achieve the effect you are looking for. Following picture shows the effect of the display.
Matrix:
Distinct count of the customer:
Total sales by Category:
Measure:
DistinctCountSales =
VAR SelectedValue = SELECTEDVALUE('Parameter'[Parameter])
RETURN
CALCULATE(
DISTINCTCOUNT('Table'[Sales]),
'Table'[Sales] > SelectedValue
)
TotalSales =
SUMX(
SUMMARIZE('Table', 'Table'[Category], "Total Sales", SUM('Table'[Sales])),
[Total Sales]
)
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi, @mya
Based on your description, I have created some measures to achieve the effect you are looking for. Following picture shows the effect of the display.
Matrix:
Distinct count of the customer:
Total sales by Category:
Measure:
DistinctCountSales =
VAR SelectedValue = SELECTEDVALUE('Parameter'[Parameter])
RETURN
CALCULATE(
DISTINCTCOUNT('Table'[Sales]),
'Table'[Sales] > SelectedValue
)
TotalSales =
SUMX(
SUMMARIZE('Table', 'Table'[Category], "Total Sales", SUM('Table'[Sales])),
[Total Sales]
)
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
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 |
|---|---|
| 57 | |
| 40 | |
| 36 | |
| 18 | |
| 18 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 38 | |
| 34 | |
| 23 |