Is there an easier way to do this? I'm trying to label each row as Q1, Q2, Q3, or Q4 based on the corresponding month. But it's only picking up the "1" "4" "7" and "10" values and labeling everything else as "0"
Solved! Go to Solution.
An alternative would be have a text input with two columns one with the Month Number and corresponding Quarter and then do a Join against your data. You can use an In function in your formula as well If [Month of Deal_YMRO] In ("1","2","3") Then "Q1" ... ETC