IS there a way to divide my date variable i just want it, i just want it to divide half yearly, its same like quaterly but i want only 2 parts for year. Is there a way to do that?
Hi
Create a new calculated item using the following expression
IF ( Month('someDate'n) BetweenInclusive(1, 6) ) RETURN Concatenate(Format('someDate'n[Raw], 'YEAR4.'), 'H1') ELSE Concatenate(Format('someDate'n[Raw], 'YEAR4.'), 'H2')
You need to adjust the expression for your date data item
Bruno
Hi
Create a new calculated item using the following expression
IF ( Month('someDate'n) BetweenInclusive(1, 6) ) RETURN Concatenate(Format('someDate'n[Raw], 'YEAR4.'), 'H1') ELSE Concatenate(Format('someDate'n[Raw], 'YEAR4.'), 'H2')
You need to adjust the expression for your date data item
Bruno
Thanks for the suggestion
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.