Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi Everyone,
I'm at an absolute loss as to how to calculate a cumulative total without data.
I tried something like this:
Solved! Go to Solution.
@JoanElGran1899
Not quite understood the model but can you try the following measure to get the accumulation based on the account number which I think is 'Cuenta Contable'
Total acumulado GL =
var __acc = MAX(Table1[Cuenta Contable]) return
CALCULATE(
[IMPORTE],
FILTER(
ALLSELECTED(Table1[Cuenta Contable]),
Table1[Cuenta Contable] <= __acc
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@JoanElGran1899
Not quite understood the model but can you try the following measure to get the accumulation based on the account number which I think is 'Cuenta Contable'
Total acumulado GL =
var __acc = MAX(Table1[Cuenta Contable]) return
CALCULATE(
[IMPORTE],
FILTER(
ALLSELECTED(Table1[Cuenta Contable]),
Table1[Cuenta Contable] <= __acc
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
It was exactly what i was looking for! 😉
Thank you so much.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
111 | |
93 | |
87 | |
35 | |
35 |
User | Count |
---|---|
154 | |
102 | |
82 | |
64 | |
54 |