SAS Web Report Studio

Traditional web-based reporting with SAS BI tools
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-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 1705 views
  • 3 likes
  • 2 in conversation