Pergunta
How to display the last 3 months of data up to today without changing the slider UI?For example if today is:12/11/2021
The Display range should show: 10/1/2021 - 12/11/2021
+ DATE(IF [Order Date] > DATEADD('month',-1,DATETRUNC('month',TODAY())) THEN DATEADD('month',-2,DATETRUNC('month',TODAY())) ELSE TODAY() END)6. Right click [Last 3 Months] and create parameter as following.
[Order Date] > [Last 3 Months Parameter]