Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Good night guys
Here's the thing, I have a bank balance table that brings me the balance on the 1st of each month, and I have a fact table containing my realized balance (income - expense).
I need the print table just below
to calculate the simple sum of the balance made with the bank balance (- 1,406,019.86) + 7,738,756.96 which gives 6,332,737.10 on day 1, and this result of 6,332,737.10 is calculated on day 2 and so on.
Thanks
Solved! Go to Solution.
Good afternoon
I managed to solve it as follows
Good afternoon
I managed to solve it as follows
Hi,
Share data in a format that can be pasted in an MS Excel file and show the expected result for a few line items. Also, if possible, please translate the column names of the Tables in English.
Hi @Edgar_massa ,
If i undestand your use case right, you're getting the running balance of Saldo Realizado and add it to Saldo Bancario. Try these measures:
=
CALCULATE (
[Saldo Realizado],
FILTER ( ALL ( datestable ), datestable[date] <= MAX ( datestable[date] ) )
) + [Saldo Bancario]
=
CALCULATE (
[Saldo Realizado],
FILTER (
ALLEXCEPT ( datestable, datestable[month] ),
datestable[date] <= MAX ( datestable[date] )
)
) + [Saldo Bancario]
=
CALCULATE ( [Saldo Realizado], DATESMTD ( datestable[month] ) ) + [Saldo Bancario]
If Saldo Realizado and Saldo Bancario are not measures, replace them with something like SUM( table[Saldo Realizado ] ) and SUM( table[Saldo Bancario] ).
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
73 | |
58 | |
36 | |
32 |
User | Count |
---|---|
90 | |
62 | |
61 | |
49 | |
45 |