Using variables with DIR Function

jagrenet

Board Regular
Joined
Feb 23, 2022
Messages
81
Office Version
  1. 365
  2. 2013
  3. 2011
  4. 2010
Platform
  1. Windows
I am using a couple of variables with a DIR function and, while the first variable works just fine, the second doesn't.

Dim Path As String
Dim PSAP_Name As String
Dim AppAvail As String

PSAP_Name = Worksheets("Sheet1").Range("C5") - (Cell C5 contains the word WALTON)
Path = "C:\Monthly_Reports\" & PSAP_Name & "\"
AppAvail = Dir(Path & "Application Availability*.docx")

OpenFile = Path & AppAvail

Set wd = New Word.Application
wd.Visible = True
wd.DisplayAlerts = wdAlertsNone

Set doc = wd.Documents.Open(OpenFile, ReadOnly)

As I step through the code I can see that "Path" actually reads "C:\Monthly_Reports\WALTON\", like it is supposed to.
When I look at the variable "AppAvail" it only shows "C:\Monthly_Reports\WALTON\" but does not include the filename specified - "Appllication Availablity*.docx".

I'm not exactly sure what I am missing here.
Thank you in advance,

Jeff
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Try this, and comment the result.

VBA Code:
Sub openword()
  Dim sPath As String, OpenFile As String
  Dim PSAP_Name As String
  Dim AppAvail As String
  Dim wd As Word.Application
  Dim Doc As Word.Document
 
  PSAP_Name = Worksheets("Sheet1").Range("C5").Value  '- (Cell C5 contains the word WALTON)
  sPath = "C:\Monthly_Reports\" & PSAP_Name & "\"
 
  AppAvail = Dir(sPath & "Application Availability*.docx")
 
  If AppAvail <> "" Then
    OpenFile = sPath & AppAvail
   
    Set wd = New Word.Application
    wd.Visible = True
    wd.DisplayAlerts = wdAlertsNone
    Set Doc = wd.Documents.Open(OpenFile, ReadOnly:=True)
  Else
    MsgBox "No files"
  End If
End Sub
 
Upvote 0
Solution
VBA Code:
AppAvail = Dir(Path & "Application Availability*.docx")

DIR is a function used to determine the presence of a particular file or files. It returns a zero length string if nothing is found. So the reason variable "AppAvail" only shows "C:\Monthly_Reports\WALTON\" is because it cannot find any files matching the pattern "Application Availability*.docx" in folder C:\Monthly_Reports\WALTON\
 
Upvote 1
VBA Code:
AppAvail = Dir(Path & "Application Availability*.docx")

DIR is a function used to determine the presence of a particular file or files. It returns a zero length string if nothing is found. So the reason variable "AppAvail" only shows "C:\Monthly_Reports\WALTON\" is because it cannot find any files matching the pattern "Application Availability*.docx" in folder C:\Monthly_Reports\WALTON\
Thanks riv01 !! - It did not dawn on me at the time that DIR would either and only be, True or False. Armed with that "refresher", .... looking at @DanteAmor's code sample above makes perfect sense. Using the conditional statement to determine if the file is there --- or not --- Then set the AppAvail variable to the String, ... providing that the condition is True. This works perfectly. I thank you BOTH riv01 AND DanteAmor for helping me to clarify what I was missing .... and to find was a little unclear.
 
Upvote 0
Try this, and comment the result.

VBA Code:
Sub openword()
  Dim sPath As String, OpenFile As String
  Dim PSAP_Name As String
  Dim AppAvail As String
  Dim wd As Word.Application
  Dim Doc As Word.Document
 
  PSAP_Name = Worksheets("Sheet1").Range("C5").Value  '- (Cell C5 contains the word WALTON)
  sPath = "C:\Monthly_Reports\" & PSAP_Name & "\"
 
  AppAvail = Dir(sPath & "Application Availability*.docx")
 
  If AppAvail <> "" Then
    OpenFile = sPath & AppAvail
  
    Set wd = New Word.Application
    wd.Visible = True
    wd.DisplayAlerts = wdAlertsNone
    Set Doc = wd.Documents.Open(OpenFile, ReadOnly:=True)
  Else
    MsgBox "No files"
  End If
End Sub
DanteAmor - Thank you !! - As you may notice in my response to riv01 ....... I had forgotten about the DIR function being only "0" or "1" - False or True. But, when I saw your suggestion utilizing the IF, Then Conditional statement, ... the light bulb went off in my head .... A serious "Ah-ha' moment for sure. I thank you both for getting me back on track !!!
 
Upvote 0

Forum statistics

Threads
1,215,113
Messages
6,123,165
Members
449,099
Latest member
bes000

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