Hi,
I would need help with the following:
I have 4 possible cells where user can enter the location of a file they would like to attache to their email.
The step i'm looking to achieve are:
This is the current code that I have, but it's really not working and i'm totally lost Not even sure that it will be helpful?
I would need help with the following:
I have 4 possible cells where user can enter the location of a file they would like to attache to their email.
The step i'm looking to achieve are:
- If cell as a value in it
- Check if file exist
- if it does good, check next
- if it doesn't store value
- display a msgbox with the list of files that don't exist.
This is the current code that I have, but it's really not working and i'm totally lost Not even sure that it will be helpful?
HTML:
check = 0
For row = 9 To 15 Step 2
If Dir(Cells(row, "C").Value) > 1 And (Cells(row, "C").Value) <> "" Then
check = check + 1
End If
Next row