BookmarkSubscribeRSS Feed
CurryThree6
Calcite | Level 5

I have a SAS EG assignment that needs me to combine year, 'Q' string, and quarter number in column. I converted a column named 'Date' (date format is 01Jan2019 for example) by using a WHEN Condition to read if the Q will be 1,2,3,or 4 named 'Quarter Ordered' with the Quarter number, shown below.. 

DateQuarter
Sep20184

Q1 is January, February, March. Q2 is April, May, June. Q3 is July, August, September. Q4 is October, November, December.

 

I'm stuck on how to format the quarter ordered column to read for example "2018Q4"

2 REPLIES 2
ballardw
Super User

Use the correct format with an actual SAS date value.

data example;
   date = '01Jan2019'd;
   format date yyq6.;
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 2172 views
  • 0 likes
  • 3 in conversation