I have a do a bucket analysis of some days calculation in SSIS staging
please help me in fixing this
DAYS <=90 = 0-3 Months
DAYS >=91 && DAYS <=180 = 3-6 Months
else > 6 Months
which I tried to frame like below but not working, and i am very new to this, please suggest
(DAYS <="90") ? "0-3 Months": ((DAYS >= "91") && (DAYS <= "180") ? "3-6 Months": "> 6 Months")