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.
Need help with calculating historcal data.
I have data for Column A-D. But want to Calculate (with DAX) E. Col D i så always the act. value. And Col E can be reverserd calculated.
Ex.
Col | A | B | C | D | E |
Date | IN | Out | Net | Act | Real Act |
2021-01-01 | 1000 | 800 | 200 | 15000 | 9942 |
2021-01-02 | 1500 | 900 | 600 | 15000 | 10142 |
2021-01-03 | 1544 | 1000 | 544 | 15000 | 10742 |
2021-01-04 | 1251 | 500 | 751 | 15000 | 11286 |
2021-01-05 | 2155 | 800 | 1355 | 15000 | 12037 |
2021-01-06 | 1001 | 450 | 551 | 15000 | 13392 |
2021-01-07 | 1000 | 555 | 445 | 15000 | 13943 |
2021-01-08 | 1300 | 888 | 412 | 15000 | 14388 |
2021-01-09 | 1000 | 800 | 200 | 15000 | 14800 |
2021-01-10 | 1500 | 900 | 600 | 15000 | 15000 |
Solved! Go to Solution.
Hey @Anonymous ,
you can do that with a calculated column.
Try the following formula:
RealAct =
VAR vDateRow = myTable[Date]
VAR vLastDate = MAX( myTable[Date] )
VAR vAct = myTable[Act]
VAR vFilterTable = FILTER( myTable, myTable[Date] >= vDateRow && myTable[Date] < vLastDate )
RETURN
vAct - SUMX( vFilterTable, myTable[Net] )
For me that works:
Hey @Anonymous ,
you can do that with a calculated column.
Try the following formula:
RealAct =
VAR vDateRow = myTable[Date]
VAR vLastDate = MAX( myTable[Date] )
VAR vAct = myTable[Act]
VAR vFilterTable = FILTER( myTable, myTable[Date] >= vDateRow && myTable[Date] < vLastDate )
RETURN
vAct - SUMX( vFilterTable, myTable[Net] )
For me that works:
Nice! Thx 😄
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 |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
8 |