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
Hi everyone,
So I have to build a table with demand, production, initial stock and final stock like this:
And i have a what-if parameter that is able to change the value of production on the first date.
The source table is (if necessary, its structure may change):
With all of this, how can i build a table like that, where in addition the production value for the first date may change dynamically?
Regards,
Hi @Anonymous,
Current power bi does not support creating dynamic calculate column/table based on filter/slicer. You can write a measure formula to interact with filters.
Notice: the data level of power bi.
Database(external) -> query table(query, custom function, query parameters) -> data model table(table, calculate column/table) -> data view with virtual tables(measure, visual, filter, slicer)
Regards,
Xiaoxin Sheng
@Anonymous,
Create measure for Production
Production =
VAR firstDate = CALCULATE(MIN(<Date Column>), ALL(<Date Column>)
VAR currentDate = MAX(<Date Column>)
VAR ProdValue = CALCULATE(SUM(Table{Value]), Table[Detail]="Production")
VAR dynValue = <What-if Measure>
RETURN
IF(currentDate = firstDate, ProdValue + dynValue, ProdValue )
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 46 | |
| 44 | |
| 29 | |
| 20 |
| User | Count |
|---|---|
| 202 | |
| 130 | |
| 102 | |
| 71 | |
| 55 |