Forum Discussion
How to create Rolling Average with +/-St. Dev. Band
- Anonymous4 years ago
Hi wlf0032
Do you want to keep the visual in red box and show others in blank?
I think you can add a If function in your measure.
New = If (Date[Dates]>= MIN(Date[Dates])&&Date[Dates]<=MAX(Date[Dates]),[StockIndex_1YMA+sd],blank())Or you can try to create an unrelated date table to build the slicer. Then create New measure based on unrelated date table.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi wlf0032
Do you want to keep the visual in red box and show others in blank?
I think you can add a If function in your measure.
New =
If (Date[Dates]>= MIN(Date[Dates])&&Date[Dates]<=MAX(Date[Dates]),[StockIndex_1YMA+sd],blank())
Or you can try to create an unrelated date table to build the slicer. Then create New measure based on unrelated date table.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
thanks! IF functions works! but i did it the following way (1Y MA is blank when dates are not selected):