Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I literally forgot how to do this, please help.
I have a table that has 2018-2022 Year sales.
I created a whatifparameter from 0-100% to be the CAGR value. Focusing only on 2022 sales, I want the user to be able to select their desired CAGR % and see what the how it impacts 2023-2025 forecasted sales.
Forecasted Sales is dax table using Union Row...example below
Solved! Go to Solution.
Hi @7ballp25
Here is a sample file with the solution https://we.tl/t-UvJsRpmiYd
Forcasted Sales =
VAR LastAvialableYear =
MAX ( Data[Year] )
VAR LastAvailableSales =
CALCULATE ( SUM ( Data[Sales] ),'Data'[Year] = LastAvialableYear )
VAR CurrentYear =
MAX ('New Data'[Year] )
VAR YearDifference =
CurrentYear - LastAvialableYear
VAR SelectedPercent =
SELECTEDVALUE ( Parameter[Selected %] )
RETURN
LastAvailableSales * POWER ( 1 + SelectedPercent, YearDifference )
Hi @7ballp25
Here is a sample file with the solution https://we.tl/t-UvJsRpmiYd
Forcasted Sales =
VAR LastAvialableYear =
MAX ( Data[Year] )
VAR LastAvailableSales =
CALCULATE ( SUM ( Data[Sales] ),'Data'[Year] = LastAvialableYear )
VAR CurrentYear =
MAX ('New Data'[Year] )
VAR YearDifference =
CurrentYear - LastAvialableYear
VAR SelectedPercent =
SELECTEDVALUE ( Parameter[Selected %] )
RETURN
LastAvailableSales * POWER ( 1 + SelectedPercent, YearDifference )
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |