View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
voodooJoe voodooJoe is offline
external usenet poster
 
Posts: 43
Default Question about creating macro (to export to quickbooks pro)

it might take some work on your part to learn, but its not hard.

the Sub X below is mostly from another post - it loops thru all xls files in
a particular directory. from inside the loop you can open, manipulate, copy
paste, etc to a new workbook.

remember to turn off screen updating

rgds- voodooJoe




Sub x()

set wbTarget = thisworkbook

'where are the old files?
strFolder = "c:\"

If Right(strFolder, 1) < "\" Then strFolder = strFolder & "\"
f = Dir(strFolder & "*.xls)

Do While f < ""
Set wbSource = Workbooks.Open(strFolder & f)
Debug.Print wbSource.Worksheets(1).Name 'do stuff - wb will be
the workbook object
'wbTarget blah blah blah - wbTarget will be this workbook
containing the code that you want to consolidate to

wbSource.Close
f = Dir()
Loop

Set wb = Nothing
End Sub


wrote in message
news:SgZsf.665742$_o.54811@attbi_s71...
I have only created basic macros before. I am wondering how hard it is to
make one that will open each spreadsheet in a folder and find the total
and
paste it in another sheet. (I then want to import all these into my
sister's
"quickbooks pro") This is my thought not having even seen the program yet
but I know it imports from excel. If anyone has a better suggestion,
please
let me know :O)