BookmarkSubscribeRSS Feed
MarkBodt_NZ
Obsidian | Level 7
This doesn't seem like the right forum for this question, but other MDX questions are being answered here, so I'll try...

There is a one sentence mention in the SAS MDX manual that you can use SAS functions in MDX in the format 'SAS!mdx(2,9,2003)' for example for the the mdx function, i.e. the function must have a prefix of SAS!

The manual is short on examples, so I'm wondering if someone can help with the syntax for filtering out the past 5 years based on today's date. The syntax I'm using is:

create set [Orion Star Customer Order Cube].[Last5Years] as

'FILTER(
[Time_Dimension].[Year_Qtr_Month].[All Year_Qtr_Month].Children ,
[Time_Dimension].[Year_Qtr_Month].currentmember.name>="'SAS!year(today())-5"
)
'

The currentmember name has values of 2006 2007 etc.

It doesn't seem to like the >="'SAS!year(today())-5"

Any help is most appreciated.

Mark
2 REPLIES 2
PaulHomes
Rhodochrosite | Level 12
Hi Mark,

Have you tried SAS!year(SAS!today())-5 ?

You might also find the standard MDX functions LastPeriods and ClosingPeriod of use. Something like:

LastPeriods(5, ClosingPeriod([Time_Dimension].[Year]))

Cheers
Paul
http://platformadmin.com/
MarkBodt_NZ
Obsidian | Level 7
Thanks Paul,

The additional SAS! seems like an obvious thing to try... I overlooked that. I haven't got it working yet, but if I do I'll post the solution. I'd like to learn about using SAS functions in MDX It would help if there was more information / examples in the manual.

Yes I've considered using functions such as LastPeriods etc and at the time I found it not to be suitable. I've taken another look and I'm having more success this time. I think that I can get this particular issue resolved using pure MDX, however I'd still like to see how to use SAS functions in MDX.

Thanks for your input Paul.

Mark

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 1124 views
  • 3 likes
  • 2 in conversation