Help

If statement with dates

Topic Labels: Formulas
957 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Research_Team_S
4 - Data Explorer
4 - Data Explorer

I am looking to create a formula where if my date field is between certain dates then my quarter field would tag appropriately.

So if the date is between 10/01/21 - 12/31/21 then the field “Quarter” would say Quarter 4. If the date is between 1/1/22 - 4/1/22 then the field “Quarter” would say Quarter 1.

I don’t if this can be done with formulas or if there is a better way to do this but would love any help/suggestions to automate the process of manually updating my quarter field.

1 Reply 1
IF(
{Date Field},
"Quarter " & DATETIME_FORMAT({Date Field}, "Q")
)