Hey guys! I need to create a "what-if" dashboard.
my problem is to apply this:
someone will pick the "N" variable with a parameter (1-60)
for example, I choose "36":
VP = VF / [ (1+T)^N ]
VP = 2000 / [ (1+0,05)^0 ]
VP = 2000 / [ (1+0,05)^1 ]
VP = 2000 / [ (1+0,05)^2 ]
(...)
VP = 2000 / [ (1+0,05)^36 ]
how can i do this?? I tried to create a "for loop" but I couldn't create
Solved! Go to Solution.
Hi @egrellert ,
Based on your description, I have created a simple sample:
Please try:
First create a parameter for N variable:
Then create a measure:
Measure = DIVIDE(MAX('Table'[VF]),(1+MAX('Table'[T]))^MAX('Parameter'[Parameter]))
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @egrellert ,
Based on your description, I have created a simple sample:
Please try:
First create a parameter for N variable:
Then create a measure:
Measure = DIVIDE(MAX('Table'[VF]),(1+MAX('Table'[T]))^MAX('Parameter'[Parameter]))
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Perfect! Thank you!!
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
215 | |
58 | |
49 | |
46 | |
45 |
User | Count |
---|---|
264 | |
211 | |
113 | |
82 | |
71 |