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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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