I have a report that will be updated Monday through Friday and want to display a single metric [Productivity %] across several different date [In_Date] "bins" i.e. a generated date dimension that would bin my data according to the following definitions:
- Yesterday
- Week to date (e.g. on Thursday, Sunday through Wednesday data would be displayed etc.)
- Last 7 days
- Month to date
- Last full month
- Last 3 months
- Last 6 months
- Last 12 months
I'm not looking to create a parameter that the user would use to toggle; rather, I want a new dimension that would be dropped in the columns section that would follow the bins outlined above.
Below is an illustration of what I want to achieve:
Currently, I have the below result using this code:
IF [In Date] = DATEADD('day', -1, TODAY()) THEN 'Yesterday'
ELSEIF [In Date] < TODAY() AND [In Date] >= DATEADD('day', -ISOWEEKDAY(TODAY()), TODAY()) then 'Week to Date'
ELSEIF [In Date] < TODAY() AND [In Date] >= DATEADD('day', -7, TODAY()) THEN 'Last 7 Days'
ELSEIF [In Date] < TODAY() AND [In Date] >= DATEADD('day', -day(TODAY())+1, TODAY()) then 'Month to Date'
ELSEIF [In Date] < DATETRUNC('month', TODAY()) AND [In Date] >= DATEADD('month', -1, DATETRUNC('month', TODAY())) then 'Last Month'
ELSEIF [In Date] < DATETRUNC('month', TODAY()) AND [In Date] >= DATEADD('month', -3, DATETRUNC('month', TODAY())) then 'Last 3 Months'
ELSEIF [In Date] < DATETRUNC('month', TODAY()) AND [In Date] >= DATEADD('month', -6, DATETRUNC('month', TODAY())) then 'Last 6 Months'
ELSEIF [In Date] < DATETRUNC('month', TODAY()) AND [In Date] >= DATEADD('month', -12, DATETRUNC('month', TODAY())) then 'Last 12 Months'
ELSE 'Older' END
The overlapping date bins are not capturing all of the data: "last 12 months" omits metrics previously captured in the "last 6 months," etc. Moreover, the first 4 bins (yesterday, WTD, last 7 days, and MTD) are missing entirely.
This is a proper case of use of PARAMETERS in Tableau. I enjoyed while solving this.
Since you have not provided any data, I created a dummy data in excel by generating dates from 1-7-2020 onwards till date (
DATE_GIVEN
) and filling some random numbers against these asMEASURE_1
. Something like this.Now proceed like this.
Step-1 Create a parameters with 8 inputs (as listed in your question). I created for first 6 and leaving remaining for you. The parameter should be like
Step-2 Create a calculated field
date bins
with the following calculationNeedless to say you have to incorporate appropriate calculation for remaining two values
Step-3 Place
date bins
on rows shelf and additionally on FILTERS CARD. (Filter out only null values from this .. special values tab). Addmeasure_1
to desired type. Showparameter 1
and your view is ready. Check the screenshots (Today's system date - 16-12-2020)OR
OR
OR