Can I make a suggestion? You could simplify your formula with the following:

 

Set(getQuarterFromDate, RoundUp(Month(Now()) / 3, 0))

 

This will divide the current month by the number of months in a quarter (3) and round up that value to the nearest whole number.

 

Thanks.