我想创建季度部分但没有天花板功能,因为我每个季度都有特定的日期。第一季度为10月22日至1月21日。所以我创建了这个函数:(在加载脚本中)
if((Month(RetDate)='10' AND Day(RetDate)>21) OR (Month(RetDate) = '11' OR Month(RetDate) = '12') OR (Month(RetDate)='1' AND Day(RetDate)<22),'Q1',
if((Month(RetDate)='1' AND Day(RetDate)>21) OR (Month(RetDate) = '2' OR Month(RetDate) = '3') OR (Month(RetDate)='4' AND Day(RetDate)<22),'Q2',
if((Month(RetDate)='4' AND Day(RetDate)>21) OR (Month(RetDate) = '5' OR Month(RetDate) = '3') OR (Month(RetDate)='6' AND Day(RetDate)<22),'Q3','Q4'))) as Quarter1,
但是通过这种方式,例如,23.10.13 (23 OCT.) 与 2013 年第一季度相关,而不是与 2014 年第一季度相关。
谢谢 :)