CSV variable type

Kinseres

New Member
Joined
Dec 3, 2015
Messages
16
Hi all!

I have a UDF that I utilise when I need to repetitively copy/paste multiple data ranges between two excel workbooks.

Code:
Sub ACopyPasta(CopyBook As Workbook, CopySheet As String, CopyRange As String, PasteBook As Workbook, PasteSheet As String, PasteRange As String, Optional transpose As Boolean = False)

Set CSheet = CopyBook.Sheets(CopySheet)
    CSheet.Activate
    CSheet.Range(CopyRange).Select
    Selection.Copy
    PasteBook.Activate
    PasteBook.Sheets(PasteSheet).Select
    Range(PasteRange).PasteSpecial xlPasteValues, transpose:=transpose
End Sub

The idea being that I can just call the function each time I need to perform a copy/paste, defining the variables as I go. It just keeps my main code from getting too cluttered.

This works perfectly fine with standard excel workbooks, but I cannot for the life of me get this working when the CopyBook is to be a CSV file, I just get a "ByRef argument type mismatch" at compile.

Does anybody know what variable type I should be using instead there? Google as failed me!
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.

Forum statistics

Threads
1,215,025
Messages
6,122,732
Members
449,093
Latest member
Mnur

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