Macro

  • Thread starter Thread starter thalko
  • Start date Start date
T

thalko

I have several excel files that I print. I have been asked to create
macro that will allow us to print all these files by just hitting on
button or command (Like Ctrl-X). Can this be done and how?

Thanks,
Ti
 
this can be done with macor record.
tools>macro>record new macro.
do the whole process on record.
then put a button on the sheet.
right click the button>view code
enter this
sub Printmystuff()
call yourrecordedmacro
end sub
you would have to put the print macro
in a master file or in one of the file
you wish to print.
 
Is it all the files in a folder?

Are the files spread all over creation?

If they're all over the place, you could build a worksheet with the filenames
(including the drive/path) and have a macro open them, print them and close
them.

And did you want to print all the worksheets in each workbook???
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top