Is it possible to create a filter which displays the year (s), and when a particular year is selected (i.e. not all years), the individual months (or even Q1, Q2, Q3, Q4) are displayed, which the user can then select from?
Right now, I have a year filter, and also created parameters for the start and end date (but these two aren’t related).
Our test users have said they would prefer the ability to select a particular year and then the specific month(s) or quarter(s), rather than having to manually enter a start and end date.
year : toString(extract('YYYY',{429Dateofadmission})
quarter: concat('Q',toString(extract('Q',{429Dateofadmission}))
For month you would have to make a large ifelse statement if you wanted the actual names. You could also look to do the month in SQL instead of QuickSight because SQL has more functionality that could give you this without writing so much.