Forum Discussion
anacarol84
4 years agoFrequent Visitor
What-if Parameter
Hello all, I am working on a report that contains what-if parameter. I need to increase the amount of the slicers value from 1000 to millions, but I cannot find a solution due to a PowerBI wh...
- 4 years ago
anacarol84 create it by yourseld from scratch.
You can create a parameter table list this in Power Query, start from blank query, write this formula and then convet to table and import it:After that just create that measure that does max on that column and you have the same numeric paramter table.
anacarol84
4 years agoFrequent Visitor
Hi SpartaBI ,
Thak you for posting the solution, but for me didnt work how I wanted, so I used a different solution to solve my issue.
Thanks anyways
- SpartaBI4 years agoCommunity Champion
Happy you solved it 💪
- Anonymous3 years agoNot applicable
Hi anacarol84
I am also having similar issue with What If Parameter input. May I know the solution you have used for your issue?
Apprciate your help on this.
Thanks- anacarol843 years agoFrequent Visitor
Hello, I am sorry for the late reply. I was on Maternity leave.
I created a calculation using this DAX:Param Indirect Cost =VAR StartValue = 1000VAR Increment = StartValueVAR EndValue = StartValue * 50000RETURNGENERATESERIES ( StartValue, EndValue, Increment )