Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello,
I need advice related to seceltion value in slicer.
My current code looks like:
I want to add aslo month
And wand information like this:
Sales for: Q1 (Month: 1,2), Q2 (Month: 4)
Could you please help me write code i DAX
Try something like this:
Matrix Title =
"Sales for: " &
CONCATENATEX(
VALUES('Calendar'[Quarter]),
'Calendar'[Quarter] & " (Month: " & CONCATENATEX(CALCULATETABLE('Calendar'), 'Calendar'[Month], ", ") & ") ",
", "
)
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |