Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
User | Count |
---|---|
123 | |
70 | |
67 | |
58 | |
53 |
User | Count |
---|---|
183 | |
92 | |
67 | |
62 | |
52 |