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

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.

Forum statistics

Threads
1,214,909
Messages
6,122,189
Members
449,072
Latest member
DW Draft

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