BookmarkSubscribeRSS Feed
Pili1100
Obsidian | Level 7

This is my simple calculation: 

X = Sum [_ByGroup_] ('y'n) - Sum [_ByGroup_] ('z'n)

 

If either y or z is missing then x become missing. Here is an example

 

Pili1100_0-1630530620585.png

I want y = 9, z = 0 -> X = 9

Otherwise I will Group the vales in SAS EG before uploading to Viya. 

3 REPLIES 3
japelin
Rhodochrosite | Level 12

try using ifn function.

 

for example

  x=y-ifn(missing(z),0,z);
Sam_SAS
SAS Super FREQ

In the Visual Analytics expression editor, you would use the Missing() operator, like this:

 

IF ( 'Invoice'n Missing )
RETURN 0
ELSE 'Invoice'n

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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
  • 427 views
  • 0 likes
  • 3 in conversation