Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have data with calculated columns in power bi, but I need to change one of the values in the calculation from a certain point, without it affecting the previous data within that same column. Is this even possible?? or should I simply create another report from the using the new calculation?
Solved! Go to Solution.
There is only one formula per column. It isn't like Excel where you can specify rows for different formulas.
You could change the formula to be the below, which would use your old formula on or before June 15, 2022, and the new formula if it is after June 15, 2022.
VAR varOldFormula = PutYourOldFormulaHere
VAR varNewFormula = PutYourNewFormulaHere
RETURN
IF(
TableName[Date] > DATE(2022,6,15),
varNewFormula,
varOldFormula
)
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reportingthank you very much will give it a try.
There is only one formula per column. It isn't like Excel where you can specify rows for different formulas.
You could change the formula to be the below, which would use your old formula on or before June 15, 2022, and the new formula if it is after June 15, 2022.
VAR varOldFormula = PutYourOldFormulaHere
VAR varNewFormula = PutYourNewFormulaHere
RETURN
IF(
TableName[Date] > DATE(2022,6,15),
varNewFormula,
varOldFormula
)
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingMarch 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
15 | |
14 | |
13 | |
12 | |
11 |