Forum Discussion
pippo80
9 years agoNew Member
Naming specific dates for filtering afterwards
Hi there, I would ike to creat a column naming specific date ranges in order to create a filter afterwards. Right now I have set up the follwing IF-statement but it is rather a long formula, spe...
- 9 years ago
Hi pippo80,
You can also use the SWITCH function to add a date range column to you table in this scenario. The formula below is for your reference. :smileyhappy:
Date Range = SWITCH ( TRUE (); [DimDate] >= DATE ( 2017; 07; 22 ) && [DimDate] <= DATE ( 2017; 07; 25 ); "22.-28.07"; // Just need add a new condition row to add more weekly periods [DimDate] >= DATE ( 2017; 06; 22 ) && [DimDate] <= DATE ( 2017; 06; 28 ); "22.-28.06"; "others" )Regards