Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am tryinig to create a print queue. Tom O has helped me with the printing
from the queue, but now I need help putting the file name in the queue (xls sheet). How do I code to get the fullname of my active book (abc.xls) to be inserted into the next available row on the users sheet. I've tried piecing together different code from searching the group, but I'm just causing more problems.Here is my code so far: Sub addtoqueue() Dim usrid As String Dim AWB As Workbook Dim uswb As Workbook Dim printdata_first_empty_row As Long Dim source_range As Range Set AWB = ActiveWorkbook usrid = Environ("Username") Application.ScreenUpdating = False Workbooks.Open Filename:= _ "G:\Contract QuoteTemplates\2005 quote template\print queue\" & usrid & ".xls" printdata_first_empty_row = Worksheets(usrid).Range("A" & Rows.Count).End(xlUp).Row + 1 With AWB Destination = AWB.FullName Application.ScreenUpdating = True End With End Sub thanks for any help given! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sharing excel sheet with multiple users, but other users cant see | Excel Discussion (Misc queries) | |||
How to disallow a sheet or file from copying by other users | Excel Discussion (Misc queries) | |||
How to export all chartobjects in a sheet to powerpoint (creating a new ppt file) as pictures? | Charts and Charting in Excel | |||
Help - Automating a file.. Adding Users , Deleting users, Changing | Excel Worksheet Functions | |||
A macro to export a sheet as UTF8 encoded Unicode file | Excel Programming |