Hyperlink Extension IF Statement

stapuff

Well-known Member
Joined
Feb 19, 2004
Messages
1,126
I am looking to find a way for a formula to check what file extension is available before it creates the hyperlink. I an currently using this formula and specifying a .pdf but it could be a .doc, .tif, or .txt file extension.

=IF(BS3="","",HYPERLINK("S:\Master_Production\DEF\"&BO3&" Batch "&BS3&".pdf","View Test Document"))

Any thoughts would be greatly appreciated,

stapuff
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Well I have a solution...just not specifically the way I wanted it done.

Added this function to a module

Function FileExists(Filename As String) As Boolean
Application.Volatile
Set fs = CreateObject("Scripting.FileSystemObject")
FileExists = fs.FileExists(Filename)
Set fs = Nothing
End Function

then built a nested formula

=IF(G3="","",IF(FileExists("S:\Master_Production\DEF\"&C3&" Batch "&G3&".pdf")=TRUE,HYPERLINK("S:\Master_Production\DEF\"&C3&" Batch "&G3&".pdf","View Test Document"),IF(FileExists("S:\Master_Production\DEF\"&C3&" Batch "&G3&".doc")=TRUE,HYPERLINK("S:\Master_Production\DEF\"&C3&" Batch "&G3&".doc","View Test Document"),IF(FileExists("S:\Master_Production\DEF\"&C3&" Batch "&G3&".tif")=TRUE,HYPERLINK("S:\Master_Production\DEF\"&C3&" Batch "&G3&".tif","View Test Document"),""))))

Need to work on this one so more.

Stapuff
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,431
Members
448,961
Latest member
nzskater

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