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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Dear All,
please, I have the following Dataset and I would like to measure the cumulative sum by month of [YTD_in/out]_
I try the following structure:
Var LastM = SELECTEDVALUE('Y Projection'[Month])
but the Column [Colonna] didn't show any results, but any error too.
Please, How I can Solve?
Solved! Go to Solution.
Please use
=
VAR LastM = 'Y Projection'[Month]
VAR CurrentDepTable =
CALCULATETABLE (
'Y Projection',
ALLEXCEPT ( 'Y Projection', 'Y Projection'[Department] )
)
RETURN
SUMX (
FILTER ( CurrentDepTable, 'Y Projection'[Month] <= LastM ),
'Y Projection'[YTD_IN/OUT]
)
Please use
=
VAR LastM = 'Y Projection'[Month]
VAR CurrentDepTable =
CALCULATETABLE (
'Y Projection',
ALLEXCEPT ( 'Y Projection', 'Y Projection'[Department] )
)
RETURN
SUMX (
FILTER ( CurrentDepTable, 'Y Projection'[Month] <= LastM ),
'Y Projection'[YTD_IN/OUT]
)
Thank You Tamerj1,
It's fine and the value are exact!!!!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 73 | |
| 66 | |
| 65 |