BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
CharlesFowler72
Obsidian | Level 7

Hi guys,

 

trying to get a date into a quarter format exactly like this..."Q1'19".

 

I'm pretty close with Quarter = Cat("Q",qtr(month),"'",year(month)) where month is my date variable.

But this gives Q1'2019 which is close but not quite there.

 

any help would be great. There is lots on the site already about this stuff but none did exactly this.

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
SUBSTRN() will allow you to substring a character variable.

SUBSTRN(year(month), 3, 2) will give you the last two digits. You may also want to explore a custom format. That's an easier solution overall.

View solution in original post

2 REPLIES 2
Astounding
PROC Star

Well, you could change this:

 

year(month)

 

Just use this instead:

 

year(month) - 2000

Reeza
Super User
SUBSTRN() will allow you to substring a character variable.

SUBSTRN(year(month), 3, 2) will give you the last two digits. You may also want to explore a custom format. That's an easier solution overall.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 794 views
  • 1 like
  • 3 in conversation