BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Sreekar
Calcite | Level 5
Hi All,
Please can anyone give me a solution of the following code :

(1-(complev(field1,field2)/max(lengthof(field1),lengthof(field2))*100

With field1 value as 1
With field 2 value as NULL or space or no value in it.

As per my understanding it has to be (1-(1/1))*100 i.e 0 as output, please can anyone confirm if it is right, my colleague tried it and op was shown as 91.66, not sure how it is possible. How does sas work with space or null values while computing? If i have 1 and null complev should be 1 and max length as 1.

Thanks in advance.
1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

1. The function lengthof is not a SAS function

2. Your parentheses are unbalanced so we can't replicate your calculation

This returns 0:

data _null_;
  FIELD1='1';
  FIELD2=' ';
  DIS=(1-(complev(FIELD1,FIELD2)/max(length(FIELD1),length(FIELD2))))*100 ;
run;

View solution in original post

2 REPLIES 2
ChrisNZ
Tourmaline | Level 20

1. The function lengthof is not a SAS function

2. Your parentheses are unbalanced so we can't replicate your calculation

This returns 0:

data _null_;
  FIELD1='1';
  FIELD2=' ';
  DIS=(1-(complev(FIELD1,FIELD2)/max(length(FIELD1),length(FIELD2))))*100 ;
run;
Sreekar
Calcite | Level 5
Hi Chris,

Yes thank you for the correction. Thanks for the clarification for output value.

Regards
Sreekar.

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
  • 734 views
  • 1 like
  • 2 in conversation