Forum Discussion
Scenario building using dates & What-if Parameters
Hi, DataUser
According to your description, I can understand clearly what you want to get, you can try my steps:
- Create a calendar table based on your data range like this:
Date = CALENDAR(DATE(2021,1,1),DATE(2021,1,10))
- Create a What-if parameter and add a slicer to the page like this:
- Create a measure in the ‘Table’ like this:
What-if Amount =
IF(
MAX('Table'[Date]) in ALLSELECTED('Date'),
MAX('Table'[Amount])+[Parameter Value],
MAX('Table'[Amount]))
- Then create a data range slicer and a table chart and place them like this:
And you can get what you want.
You can download my test pbix file here
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- lbendlin5 years ago
Super User
You don't even need the SELECTCOLUMNS part since the calendar returns a single column table.
- DataUser5 years ago
Helper I
So - I built my own test version based on what you wrote and it definitely works. Unfortunately, it isn't working when I try to apply it within my actual report and I am trying to troubleshoot why. Would this type of formula be impacted if the source data isn't from a table but is from a linked Sharepoint List? Is there another method I could try?
- DataUser5 years ago
Helper I
When I try to switch it over to a calculated column, it's still not functioning correctly. My formula looks like this but all that it returns is the maximum value in the AmountSharepointList[AMOUNT] column, so I assume it's reading the condition as "False" for some reason.
WhatifColumn = IF(
MAX(AmountSharepointList[Date])in ALLSELECTED('Date'),MAX(AmountSharepointList[AMOUNT])+[What-If Capacity Value],MAX(AmountSharepointList[AMOUNT]))