Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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 |
---|---|
88 | |
82 | |
43 | |
40 | |
35 |