Hello DOMO Dojo -
I have a beast mode that deals with dates, I am wondering if there is a way to make the date dynamic
Here's my formula>>>>
(case
when (`TC: Created Date` >= '10/1/2025'and`TC: Created Date` < '1/1/2026') and (`TC: End Date`>= '7/1/2025'and`TC: End Date`<= '9/30/2025') then 'Q4 2025'
when (`TC: Created Date` >= '7/1/2025'and`TC: Created Date` < '10/1/2025') and (`TC: End Date`>= '4/1/2025'and`TC: End Date`<= '6/30/2025') then 'Q3 2025'
when (`TC: Created Date` >= '4/1/2025'and`TC: Created Date` < '7/1/2025') and (`TC: End Date`>= '1/1/2025'and`TC: End Date`<= '3/31/2025') then 'Q2 2025'
when (`TC: Created Date` >= '1/1/2025'and`TC: Created Date` < '4/1/2025') and (`TC: End Date`>= '10/1/2024'and`TC: End Date`<= '12/31/2024') then 'Q1 2025'
when (`TC: Created Date` >= '10/1/2024'and`TC: Created Date` < '1/1/2025') and (`TC: End Date`>= '7/1/2024'and`TC: End Date`<= '9/30/2024') then 'Q4 2024'
when (`TC: Created Date` >= '7/1/2024'and`TC: Created Date` < '10/1/2024') and (`TC: End Date`>= '4/1/2024'and`TC: End Date`<= '6/30/2024') then 'Q3 2024'
when (`TC: Created Date` >= '4/1/2024'and`TC: Created Date` < '7/1/2024') and (`TC: End Date`>= '1/1/2024'and`TC: End Date`<= '3/31/2024') then 'Q2 2024'
when (`TC: Created Date` >= '1/1/2024'and`TC: Created Date` < '4/1/2024') and (`TC: End Date`>= '10/1/2023'and`TC: End Date`<= '12/31/2023') then 'Q1 2024'
when (`TC: Created Date` >= '10/1/2023'and`TC: Created Date` < '1/1/2024') and (`TC: End Date`>= '7/1/2023'and`TC: End Date`<= '9/30/2023') then 'Q4 2023'
when (`TC: Created Date` >= '7/1/2023'and`TC: Created Date` < '10/1/2023') and (`TC: End Date`>= '4/1/2023'and`TC: End Date`<= '6/30/2023') then 'Q3 2023'
when (`TC: Created Date` >= '4/1/2023'and`TC: Created Date` < '7/1/2023') and (`TC: End Date`>= '1/1/2023'and`TC: End Date`<= '3/31/2023') then 'Q2 2023'
when (`TC: Created Date` >= '1/1/2023'and`TC: Created Date` < '4/1/2023') and (`TC: End Date`>= '10/1/2022'and`TC: End Date`<= '12/31/2022') then 'Q1 2023'
when (`TC: Created Date` >= '10/1/2022'and`TC: Created Date` < '1/1/2023') and (`TC: End Date`>= '7/1/2022'and`TC: End Date`<= '9/30/2022') then 'Q4 2022'
when (`TC: Created Date` >= '7/1/2022'and`TC: Created Date` < '10/1/2022') and (`TC: End Date`>= '4/1/2022'and`TC: End Date`<= '6/30/2022') then 'Q3 2022'
when (`TC: Created Date` >= '4/1/2022'and`TC: Created Date` < '7/1/2022') and (`TC: End Date`>= '1/1/2022'and`TC: End Date`<= '3/31/2022') then 'Q2 2022'
when (`TC: Created Date` >= '1/1/2022'and`TC: Created Date` < '4/1/2022') and (`TC: End Date`>= '10/1/2021'and`TC: End Date`<= '12/31/2021') then 'Q1 2022'
when (`TC: Created Date` >= '10/1/2021'and`TC: Created Date` < '1/1/2022') and (`TC: End Date`>= '7/1/2021'and`TC: End Date`<= '9/30/2021') then 'Q4 2021'
when (`TC: Created Date` >= '7/1/2021'and`TC: Created Date` < '10/1/2021') and (`TC: End Date`>= '4/1/2021'and`TC: End Date`<= '6/30/2021') then 'Q3 2021'
when (`TC: Created Date` >= '4/1/2021'and`TC: Created Date` < '7/1/2021') and (`TC: End Date`>= '1/1/2021'and`TC: End Date`<= '3/31/2021') then 'Q2 2021'
when (`TC: Created Date` >= '1/1/2021'and`TC: Created Date` < '4/1/2021') and (`TC: End Date`>= '10/1/2020'and`TC: End Date`<= '12/31/2020') then 'Q1 2021'
when (`TC: Created Date` >= '10/1/2020'and`TC: Created Date` < '1/1/2021') and (`TC: End Date`>= '7/1/2020'and`TC: End Date`<= '9/30/2020') then 'Q4 2020'
when (`TC: Created Date` >= '7/1/2020'and`TC: Created Date` < '10/1/2020') and (`TC: End Date`>= '4/1/2020'and`TC: End Date`<= '6/30/2020') then 'Q3 2020'
when (`TC: Created Date` >= '4/1/2020'and`TC: Created Date` < '7/1/2020') and (`TC: End Date`>= '1/1/2020'and`TC: End Date`<= '3/31/2020') then 'Q2 2020'
when (`TC: Created Date` >= '1/1/2020'and`TC: Created Date` < '4/1/2020') and (`TC: End Date`>= '10/1/2019'and`TC: End Date`<= '12/31/2019') then 'Q1 2020'
when (`TC: Created Date` >= '10/1/2019'and`TC: Created Date` < '1/1/2020') and (`TC: End Date`>= '7/1/2019'and`TC: End Date`<= '9/30/2019') then 'Q4 2019'
when (`TC: Created Date` >= '7/1/2019'and`TC: Created Date` < '10/1/2019') and (`TC: End Date`>= '4/1/2019'and`TC: End Date`<= '6/30/2019') then 'Q3 2019'
else 0
end)
Thank you to anyone who can help!