Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
hello,
i have a measure to calculate the total sales
[total Sales]
please, i want to calculate the top 6 sales by month by client ( start date from 06/2022 to 09/2023)
(the best 6 sales by month for each client)
thank you
Solved! Go to Solution.
Hi @Sofinobi ,
I suggest you to create a Calendar table which is connected to your data table to help your calculation.
Calendar = ADDCOLUMNS(CALENDARAUTO(),"YearMonth",YEAR([Date]) * 100 +MONTH([Date]),"Month/Year",COMBINEVALUES("/",FORMAT(MONTH([Date]),"00"),YEAR([Date])))
Then create a rank measure.
Rank =
VAR _SUMMARIZE =
SUMMARIZE (
ADDCOLUMNS ( ALL ( 'Table' ), "Month/Year", RELATED ( 'Calendar'[Month/Year] ) ),
[Month/Year],
[Customer],
"Sum",
SUMX (
ADDCOLUMNS ( 'Table', "Month/Year", RELATED ( 'Calendar'[Month/Year] ) ),
[Sales]
)
)
VAR _ADDRANK =
ADDCOLUMNS (
_SUMMARIZE,
"RANKX",
RANKX (
FILTER ( _SUMMARIZE, [Month/Year] = EARLIER ( [Month/Year] ) ),
[Sum],
,
DESC,
DENSE
)
)
RETURN
SUMX (
FILTER (
_ADDRANK,
[Month/Year] = MAX ( 'Calendar'[Month/Year] )
&& [Customer] = MAX ( 'Table'[Customer] )
),
[RANKX]
)
Add this measure into visual level filter and set it to show items when value <=6.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Sofinobi ,
I suggest you to create a Calendar table which is connected to your data table to help your calculation.
Calendar = ADDCOLUMNS(CALENDARAUTO(),"YearMonth",YEAR([Date]) * 100 +MONTH([Date]),"Month/Year",COMBINEVALUES("/",FORMAT(MONTH([Date]),"00"),YEAR([Date])))
Then create a rank measure.
Rank =
VAR _SUMMARIZE =
SUMMARIZE (
ADDCOLUMNS ( ALL ( 'Table' ), "Month/Year", RELATED ( 'Calendar'[Month/Year] ) ),
[Month/Year],
[Customer],
"Sum",
SUMX (
ADDCOLUMNS ( 'Table', "Month/Year", RELATED ( 'Calendar'[Month/Year] ) ),
[Sales]
)
)
VAR _ADDRANK =
ADDCOLUMNS (
_SUMMARIZE,
"RANKX",
RANKX (
FILTER ( _SUMMARIZE, [Month/Year] = EARLIER ( [Month/Year] ) ),
[Sum],
,
DESC,
DENSE
)
)
RETURN
SUMX (
FILTER (
_ADDRANK,
[Month/Year] = MAX ( 'Calendar'[Month/Year] )
&& [Customer] = MAX ( 'Table'[Customer] )
),
[RANKX]
)
Add this measure into visual level filter and set it to show items when value <=6.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
16 | |
14 | |
14 | |
12 | |
11 |
User | Count |
---|---|
19 | |
16 | |
14 | |
11 | |
9 |