The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have a table with the amount of power usage and cost per month for the last 2 years.
I want to look at projecting how much it would cost for the next few years based on a user input (by using a parameter) from a percentage.
For example, in January 2021 - 1021 Volts were used and costs $1200, and in Febraury 2021 - 1202 Volts were used and costs $1400.
Example table:
Month | Voltage Use | Cost |
January 2021 | 1021 | 1200 |
February 2021 | 1202 | 1400 |
etc... | etc... | etc... |
Then the user will input a 5% voltage use increase for the next year (by using a parameter), I want to see the 5% increase on the voltage and costs for those months. I want the line chart to show those new values based on the 5% increase of the values in the table from 2021 to present.
Is there a DAX formula to create this kind of calculations and work with a user input?
Still a newbie so any help would be appreciated.
Thank you!
@Anonymous , Something like this with help from date table for 2021 onward
Year behind Cost= CALCULATE(SUM(Table[Cost]),dateadd('Date'[Date],-1,Year)) *1.05
Year behind Cost= CALCULATE(SUM(Table[Cost]),SAMEPERIODLASTYEAR('Date'[Date]))*1.05
You can merge two column based on today
if(max(Date[Year]) < Year(Today()) , SUM(Table[Cost]) ,[Year behind Cost])
User | Count |
---|---|
81 | |
81 | |
37 | |
34 | |
31 |
User | Count |
---|---|
94 | |
80 | |
60 | |
50 | |
49 |