View Single Post
  #2   Report Post  
dctrs8tn dctrs8tn is offline
Junior Member
 
Posts: 2
Default

so far I have:

[code]Sub test()
'
' test Macro
'
Dim fileName As String
Dim fileName1 As String
' prompt the user to get the name of the file(s) to open

fileName = Application _
.GetOpenFilename()

fileName1 = Application _
.GetOpenFilename()

' opens both files
Excel.Application.Workbooks.Open (fileName)
Excel.Application.Workbooks.Open (fileName1)

' format the cells
' to make sure they copy correctly
Range("B1:B26").NumberFormat = "Genral"

' for loop to get data

For i = 6 To 23
Select Case i
Case Is = 6 ' assign: net sales
%2

Last edited by dctrs8tn : March 2nd 11 at 08:12 AM