VBA to find file from Hyperlink

KCBigdogCWH

New Member
Joined
Apr 8, 2019
Messages
2
I am new to MrExcel and would appreciate anyone 's suggestion regarding an issue I am having with Excel VBA

I have an Excel concatenated text, which I turn into a hyperlink. I am trying to loop through the list and determine which ones have a file associated and which do not: The code below returns at the- If Dir(): Compile Error: Wrong number of arguments or invalid property assignment

Public Sub Verify_Files()

Dim Name As String
Application.ScreenUpdating = False
Worksheets("Estimate Location").Select
Range("K6").Select
Do Until IsEmpty(ActiveCell)
ActiveCell.Select
Name = ActiveCell.Value
If Dir(Name) = "" Then
Selection.Offset(0, 2).Value = "NO FILE"
Else
Selection.Offset(0, 2).Value = "FILE FOUND"
End If
Selection.Offset(1, 0).Select
ActiveCell.Select
Loop
Application.ScreenUpdating = True
Range("K6").Select
End Sub
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.

Forum statistics

Threads
1,215,443
Messages
6,124,890
Members
449,194
Latest member
JayEggleton

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