Easy, Stupid One that's doing me in - automation error on Workbook.Name

ClimoC

Well-known Member
Joined
Aug 21, 2009
Messages
584
Hi all

Cannot see why this gives an 'Automation Error'.

Thought at first it may be because the workbook being opened is a csv, but further tests have shown that to be rubbish.

All I want REALLY, is to obtain the filepath and filename from a cell (@ Sheets("Multipass").Range("B8").value, set by the FileOpenDialog string return) so that I can use the ADO to open the csv into a recordset directly.

My current method of grabbing the string for the Path is only doable when I open the workbook. I don't want to open it TWICE to get the name and path.. ideally don't want to do it at all!

Stepping through it, 'TBB' is never set, but the workbook DOES open. xWBSource gets set though, but no second version of the csv/xlsx gets opened.

This should be like water to a duck for me but I think I'm missing one of those little bits of info you don't know til you know about proper or allowable syntaxes/orders of things....


Code:
Global RS As Recordset, CS As Worksheet, cstrw As Long

Public Function Multi()

Dim chans As New Scripting.dictionary, iCh As Variant, ChK As Variant
Dim xWb As String, xWbSource As String, TBB As Workbook, xWb2 As String

xWb = ThisWorkbook.Sheets("Multipass").Range("B8").Value
Set TBB = Workbooks.Open(xWb)
xWbSource = Workbooks.Open(xWb).Path
xWb2 = TBB.name
xWb = Right(xWb, InStrRev(xWb, "\", , vbTextCompare))
ThisWorkbook.Activate

ImportToRecSet xWb, xWbSource
TB.Close



Any ideas?

Thanks
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
This demonstrates how to validate a file path and name using the Dir function, and then splits it into the two components:

Code:
Public Sub Demo()
    Dim strFile As String
    Dim strFilePath As String, strFileName As String
    
    strFile = Sheet1.Range("E21").Value
    
    If Len(Dir$(strFile)) = 0 Then
        Call Err.Raise(vbObjectError + 1024, , "File does not exist!")
    Else
        strFileName = Dir$(strFile)
        strFilePath = Left$(strFile, InStrRev(strFile, Application.PathSeparator))
    End If
    
    Debug.Print strFileName, strFilePath
End Sub
 
Upvote 0
Much appreciated Jon.

Any light on why this fails? I know I've used

Code:
Set SomeWkBk = Workbooks.open(pathandfilestring)

without issue.

Thanks again
C
 
Upvote 0
Can you confirms this still happens when:

You define SomeWkBk as Workbook, e.g:
Code:
Dim SomeWkBk as Workbook

and then rather than use Workbooks.Open, try:
Code:
Application.Workbooks.Open
 
Upvote 0
You effectively closed and reopened the workbook so TBB has lost its reference.
 
Upvote 0
Yeah but I opened it, set the variables, then closed it... didn't I?

I tried closing the workbook before and after trying to establish the ado connection. No difference.

And yes Jon, that did work (Application.Workbooks...)
 
Upvote 0
nope - you opened it, set a variable, opened it again, then tried to access the variable, which you broke by opening the workbook again.
this
Code:
xWb = ThisWorkbook.Sheets("Multipass").Range("B8").Value
Set TBB = Workbooks.Open(xWb)
xWbSource = Workbooks.Open(xWb).Path
shouldbe
Code:
xWb = ThisWorkbook.Sheets("Multipass").Range("B8").Value
Set TBB = Workbooks.Open(xWb)
xWbSource = TBB.Path
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,701
Members
448,980
Latest member
CarlosWin

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