Morning everyone, I am trying to look up a file path (http to check if a file exists, if it does a folrmula in a cell will return a value if True and antoher value if False. I thinking a functin and a UDf will do the trick, but dont know where to start. To make things harder the file path will never be the same. each file path is created by different cell values. See below:
I really appreciate any direction anyone give me
sd
Code:
ThisFile = Worksheets("MyStoreInfo").Range("C2")
Area = Worksheets("MyStoreInfo").Range("E8")
Region = Worksheets("MyStoreInfo").Range("F8")
District = Worksheets("MyStoreInfo").Range("C8")
M0nth = Worksheets("Dashboard").Range("O8")
("[URL]http://abcdefgwebsite/[/URL]" & Area & "/" & Region & "/" & District & "/" & M0nth & "Schedule" & ThisFile & ".xlsx")
I really appreciate any direction anyone give me
sd