Hi Alteryx Users,
I have a column of dates in form:
2017-02-01
2017-05-01
2017-11-01
I'm trying to return the first date of the quarter the date is in, such as:
2017-01-01
2017-04-01
2017-10-01
I used DateTimeTrim([Field1],"month") to get the first set of dates, is there a way to do the same for quarter? DateTimeTrim([Field1],"quarter") doesn't seem to work. I need the end output to be in date form, not a string/integer.