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;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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