I have managed to show the sales figure of the month which had highest sales.
However I want to display the month name which had the highest monthly sales in the selected year.
Thanks in advance.
Solved! Go to Solution.
Hi @km_km2023 ,
Like this?
First , create a measure:
max = IF(SELECTEDVALUE('Table'[value])=MAXX(ALL('Table'),'Table'[value]),1,0)
Then, put this measure into visual filter:
You can get the above result.
Best regards,
Community Support Team Selina zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @km_km2023 ,
Like this?
First , create a measure:
max = IF(SELECTEDVALUE('Table'[value])=MAXX(ALL('Table'),'Table'[value]),1,0)
Then, put this measure into visual filter:
You can get the above result.
Best regards,
Community Support Team Selina zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hello,
You can try this - MAX_VAL = Calculate(MAX(Table[value],ALLEXCEPT(Table,Table[category]))
I dont think this works actually. I want to display the month name and not the monthly sales.
I would want the outcome to be "Mar" in the below scenario. Also the data is by each line, hence the below table I have shown only for example purposes.
User | Count |
---|---|
125 | |
64 | |
56 | |
47 | |
41 |
User | Count |
---|---|
118 | |
67 | |
63 | |
62 | |
44 |