The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi team,
I have a cumulative line of Users login by day. i would like to show the data label at the end of the cumulative line.
Is it possible and how can i do it.
Please help.
Hi,
Do you have issue about cumulative measure total?
If so, please try like this:
Cumulative =
VAR a =
ALLSELECTED ( 'Table' )
RETURN
SUMX (
DISTINCT ( 'Table'[Date] ),
CALCULATE (
CALCULATE (
SUM ( 'Table'[Count_of_Users_Login] ),
FILTER ( a, 'Table'[Date] <= MAX ( 'Table'[Date] ) )
)
)
)
The result shows:
Hope this helps.
Best Regards,
Giotto
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
108 | |
78 | |
77 | |
46 | |
39 |
User | Count |
---|---|
137 | |
108 | |
64 | |
64 | |
53 |