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: 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!

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
  • 905 views
  • 1 like
  • 3 in conversation