BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
hhchenfx
Barite | Level 11

Hi,

I want to generate a column containing time from 8:00 to 16:00 step by 1 minute.

So the data should look like:

8:00

8:01

8:02

...

15:59

16:00

Can you please help?

Thanks,

HHC

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

If you want to output multiple observations you need to execute multiple OUTPUT statements.

Can you do it now?

 

Spoiler

 

data want; 
format mytime time5.;
do time='08:00't to '16:00't by 60 ;
  mytime=time;
  output;
end;
run;

 

View solution in original post

4 REPLIES 4
Tom
Super User Tom
Super User

Time is enumerated in seconds. There are 60 seconds in a minute.

do time='08:00't to '16:00't by 60 ;
 ...
end;
hhchenfx
Barite | Level 11

Thanks Tom.

How can I put put those in a table in a data step?

Of course, this one below is not working for me. Only 1 row is saved.

Thanks,

HHC

 

data want; 
format mytime time9.;
do time='08:00't to '16:00't by 60 ;
mytime=time;
end;
run;
Tom
Super User Tom
Super User

If you want to output multiple observations you need to execute multiple OUTPUT statements.

Can you do it now?

 

Spoiler

 

data want; 
format mytime time5.;
do time='08:00't to '16:00't by 60 ;
  mytime=time;
  output;
end;
run;

 

hhchenfx
Barite | Level 11

Thank you, Tom.

HHC

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 4 replies
  • 847 views
  • 1 like
  • 2 in conversation