Forum Discussion
Anonymous
4 years agoNot applicable
Forecasting qualification expiry dates
Hi Everyone, I have a table that contains a list of names, qualifications and the date these qualifications expire. I then have a slider with the values of 0 to 11 months, which I plan to use for...
Anonymous
4 years agoNot applicable
I also tried this solution but got stuck again:
I've created a new column for each of my slider values, subtracting a month each time.
| Expiry | Expiry - 1 | Expiry - 2 | Expiry - 3 |
| 12/03/2022 | 12/02/2022 | 12/01/2022 | 12/12/2021 |
I then created the following measure:
SWITCH(
SELECTEDVALUE([slider],
0,
SUM([Expiry]),
1,
SUM([Expiry - 1])
...)
This works great but, since the values are being returned from a measure, they are no longer acting as dates and I am unable to use relative filtering.