Upload items in same order in folder as listed

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,561
Office Version
  1. 2021
Platform
  1. Windows
I have a macro to upload various files to a folder. I would like these uploaded in the same order from BR1JNLasCSV to HPRJNLasCSV


It would be appreciated if someone could kindly amend my code

See link below showing order files should be once uploaded




Code:
 Sheets("BR1 JNL").Select

Dim vTemp As Variant

Dim LR As Long

Dim lC As Long

Dim i As Long

Dim indexColumn As Long

Dim indexRow As Long



' get depth of rows from column A

LR = Cells(Rows.Count, 1).End(xlUp).Row



'get width of data from row 1 (header)

lC = Cells(1, Columns.Count).End(xlToLeft).Column



'open the file as output



Open "c:\Journal Templates\BR1 JNL.csv" For Output As #1





'move throught the spreadsheet, 1 row down all columns across



For indexRow = 1 To LR Step 1

For indexColumn = 1 To lC Step 1





'remove " from cells

vTemp = Trim(Replace(Cells(indexRow, indexColumn), Chr(34), "'"))



'Print headers so they are clear MyAddess1 rather than "Myaddress1"

If (indexRow = 1) Then

If (indexColumn = lC) Then

Print #1, vTemp ' end of line

Else

Print #1, vTemp & ","; ' comma sep (required for the print statement

End If



Else

If indexColumn = lC Then

Write #1, vTemp 'end of line using write

Else

Write #1, vTemp; 'continuation of line using write



End If

End If







Next indexColumn



Next indexRow



Close #1



End Sub





Sub PEJNLasCSV()



Sheets("PE VAT JNL").Select

Dim vTemp As Variant

Dim LR As Long

Dim lC As Long

Dim i As Long

Dim indexColumn As Long

Dim indexRow As Long



' get depth of rows from column A

LR = Cells(Rows.Count, 1).End(xlUp).Row



'get width of data from row 1 (header)

lC = Cells(1, Columns.Count).End(xlToLeft).Column



'open the file as output



Open "c:\Pinnacle Journal Templates\PE Vat JNL.csv" For Output As #1





'move throught the spreadsheet, 1 row down all columns across



For indexRow = 1 To LR Step 1

For indexColumn = 1 To lC Step 1





'remove " from cells

vTemp = Trim(Replace(Cells(indexRow, indexColumn), Chr(34), "'"))



'Print headers so they are clear MyAddess1 rather than "Myaddress1"

If (indexRow = 1) Then

If (indexColumn = lC) Then

Print #1, vTemp ' end of line

Else

Print #1, vTemp & ","; ' comma sep (required for the print statement

End If



Else

If indexColumn = lC Then

Write #1, vTemp 'end of line using write

Else

Write #1, vTemp; 'continuation of line using write



End If

End If






Next indexColumn



Next indexRow



Close #1



End Sub
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.

Forum statistics

Threads
1,214,833
Messages
6,121,857
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top