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;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1820 views
  • 0 likes
  • 3 in conversation