Pinaceous
Well-known Member
- Joined
- Jun 11, 2014
- Messages
- 1,124
- Office Version
- 365
- Platform
- Windows
Hi All,
I've submitted a thread
VBA 03 IF Criteria Conditions
where I'm asking a similar question, but I feel as though I hit a wall based on a new condition, which I believe warrants this new string based on an additional criteria (3+1=4th criteria) being a 4th criteria.
Please forgive me, if I cannot see the obvious here as I'm really confused.
Where; If there is a NUMBER at Sheet1.A1 then go to next code:
If there is a NUMBER at Sheet1.A1 & Sheet10.A1 then go to next code:
Where; If there is a NUMBER at Sheet1.A1 & Sheet10.A1 & Sheet5.A1 then
[/CODE]
Where; If there is a NUMBER at Sheet1.A1 & Sheet10.A1 then
Can someone please help me piece together this into a single macro??
Thanks!
Pinaceous
I've submitted a thread
VBA 03 IF Criteria Conditions
where I'm asking a similar question, but I feel as though I hit a wall based on a new condition, which I believe warrants this new string based on an additional criteria (3+1=4th criteria) being a 4th criteria.
Please forgive me, if I cannot see the obvious here as I'm really confused.
Code:
If IsEmpty(Sheet1.Range("A1").Value) Then
MsgBox "First!"
Code:
Where; If IsEmpty(Sheet10.Range("A1").Value) Then
MsgBox "Second!"
Code:
Where; If IsEmpty(Sheet5.Range("A1").Value) Then
MsgBox "Third!"
[/CODE]
Where; If there is a NUMBER at Sheet1.A1 & Sheet10.A1 then
Code:
MsgBox "Good to Go!"
Can someone please help me piece together this into a single macro??
Thanks!
Pinaceous
Last edited: