Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 81 | |
| 73 | |
| 46 | |
| 35 |