BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
JaiDorey
Calcite | Level 5


Hi All,

I am new to SAS and I am practicing doing different process' using the coding.

I am trying to do the following, however I have hit a wall.

If we list all of the natural numbers below 10 that are multiples
of 3 or 5, we get: 3, 5, 6 and 9. The sum of these multiples is 23.

Find the sum of all the multiples of 3 or 5 below 1000.

Please can anyone advise how this should be written

1 ACCEPTED SOLUTION

Accepted Solutions
Xianhua_zeng
Fluorite | Level 6

How about this:


data test;

  do i=1 to 999;

  if mod(i,3)=0 or mod(i,5)=0 then total+i;

  if i=999 then output;

  end;

run;

View solution in original post

1 REPLY 1
Xianhua_zeng
Fluorite | Level 6

How about this:


data test;

  do i=1 to 999;

  if mod(i,3)=0 or mod(i,5)=0 then total+i;

  if i=999 then output;

  end;

run;

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