Forum Discussion
Multi use What-If
- 4 years ago
Hi iantemte ,
According to your description, I think you want to create two parameters, one for the local loan rate changes and another for abroad loan rate changes, if this is the case, here's my solution.
Create two what-if parameters.
Create two measures.
Rate Hypothetical delta = SWITCH ( MAX ( 'Table'[Loan Type] ), "Local Loans", 'Local'[Parameter Value], "Abroad loans", 'Abroad'[Parameter Value 2] )New Rate = MAX('Table'[Recent booking rate])+'Table'[Rate Hypothetical delta]Get the result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please considerAccept it as the solution to help the other members find it more quickly.
Hi iantemte ,
According to your description, I think you want to create two parameters, one for the local loan rate changes and another for abroad loan rate changes, if this is the case, here's my solution.
Create two what-if parameters.
Create two measures.
Rate Hypothetical delta =
SWITCH (
MAX ( 'Table'[Loan Type] ),
"Local Loans", 'Local'[Parameter Value],
"Abroad loans", 'Abroad'[Parameter Value 2]
)
New Rate = MAX('Table'[Recent booking rate])+'Table'[Rate Hypothetical delta]
Get the result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please considerAccept it as the solution to help the other members find it more quickly.