what is the best way to do an if then statement with two if conditions?

samanthareed2012

New Member
Joined
May 2, 2014
Messages
9
I'm trying to get the code to look at the data in column N and the data in column T and then create rows within a table based on the data in those two cells.
I'm new to VBA so I'm having trouble figuring out a solution that isn't an If-Then statement. Is there a way to have to If (this) & (that) Then ...

If not what is the best way to do this?

Thank you in advance for all your help!
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Code:
IF [EXPRESSION] AND [EXPRESSION] THEN
     ' PUT YOUR CODE HERE
END IF

Or

Code:
IF [EXPRESSION] THEN
      IF [EXPRESSION] THEN
             ' CODE
       END IF
END IF
 
Upvote 0
Wow. That's so easy. I wonder why I never came across that while searching Google...

Thanks a ton! This just saved me SO much time!
 
Upvote 0

Forum statistics

Threads
1,215,233
Messages
6,123,771
Members
449,122
Latest member
sampak88

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