BookmarkSubscribeRSS Feed
Dreamer
Obsidian | Level 7

Hi,

I'm using SAS VA 7.3.

 

I've created an Aggregated measure.

But If one of my measure's value is missing then aggregated formula is also returning a missing value.

 

In base SAS we can use Sum(var1,var2) function to avoid this problem.

But in VA it is giving me syntax error.

 

What should I modify in this formula to add numbers with missing value?

Sum [_ByGroup_] ('M1'n) / ( Sum [_ByGroup_] ('M2'n) + Sum [_ByGroup_] ('M3'n) )

 

 

Any suggestion?

 

3 REPLIES 3
FredrikE
Rhodochrosite | Level 12

Maybe if you use max()?

max('M1'n,0)

max('M2'n,0)

...

//Fredrik

Dreamer
Obsidian | Level 7

Thanks @FredrikE I tried but It didn't work.
I tried Sum [_ByGroup_] (max('C_B7'n))  but then got "Unknown Error" message.

Dreamer
Obsidian | Level 7

Btw for a quick fix I replaced all missing values to 0 (zero).

It worked for now.

But I'll be looking for a good solution of this problem.

I'm sure there should be some way to negate missing value effect.

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!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 1099 views
  • 0 likes
  • 2 in conversation