top of page

How to work with IF statements in VBA?


If Statements are logical alternatives that will execute something based on something. They

vba if statements

are very intuitive as you are already doing them everyday in your

life, it is just a matter of learning the syntax for them (code language for saying how to write them in VBA).


For example, should I get coffee? if yes, then add cream, if not, get tea with honey.


IF statements follows the following structure

If Logical statement Then    
   'Do something if the logical statement is true.
End If


Examples of more IF statements

Simple IF statement

Sub If_One()
'One If condition

If Range("A1") = "Please" Then
    MsgBox ("It was 'Please'!")
End If

End Sub
simple if statement










IF statement with two conditions

Sub If_Two()
'Two conditions
'Prints out Analyze instead of Please.
'as the first statement was incorrect. 

If Range("A2") = "Please" Then
    MsgBox ("It was 'Please'!")
ElseIf Range("A2") = "Analyze" Then
    MsgBox ("It was 'Analyze'!")
End If

End Sub
if statement with 2 conditions










IF statement with more conditions

Sub If_Mult()'Multiple conditions
'Colors cell with 'Please' as the first if statement was correct.
'since the first IF statement was correct the code is done, and does 
 not check the other IFs.

If Range("A1") = "Please" Then

    Range("A1").Interior.Color = RGB(150, 200, 180) 'colors green

ElseIf Range("A2") = "Analyze" Then

    Range("A2").Interior.Color = RGB(100, 100, 255) 'colors blue

ElseIf Range("A3") = "The" Then

    Range("A3").Interior.Color = RGB(250, 180, 180) 'colors salmon
 
End If
​
End Sub
multiple conditions if statement






IF statement with more conditions

Sub If_Mult_Blue()

'Multiple conditions
'Colors cell with 'Please' blue according to the second IF statement.


If Range("A1") = "Analyze" Then

    Range("A1").Interior.Color = RGB(150, 200, 180) 'colors green
Else
    Range("A1").Interior.Color = RGB(100, 100, 255) 'colors blue
 
End If

End Sub
if statement with more if else elseif







14 views2 comments

Recent Posts

See All

2 Comments


دور شيخ روحاني في المجتمع

يلعب شيخ روحاني دورًا محوريًا في حياة الناس، حيث يساهم بشكل كبير في توجيههم نحو النمو الروحي والارتقاء بحياتهم الروحية. يقوم الشيخ الروحاني بتقديم النصائح والإرشادات التي تساعد الأفراد على فهم أعمق لدينهم وتحقيق السلام الداخلي. من خلال التواصل المستمر مع الأفراد، يساعد شيخ روحاني في حل المشكلات الروحية والنفسية التي قد تواجههم.

تتمثل أهمية شيخ روحاني في المجتمع في كونه مرشدًا وموجهًا يساهم في نشر القيم الروحية والدينية. من خلال خطبه ودروسه، يعزز الشيخ الروحاني من روح المحبة والتعاون بين الناس، مما يساهم في بناء مجتمع قوي ومتماسك. إن دوره لا يقتصر فقط على تقديم النصائح، بل يتعدى ذلك إلى كونه مصدر إلهام للأفراد في رحلتهم الروحية.

تأثير شيخ روحاني على النمو الروحي

يعد النمو الروحي عملية…

Like

CBKM BOCU
CBKM BOCU
Nov 03

EPTU Machine ETPU Moulding…

EPTU Machine ETPU Moulding…

EPTU Machine ETPU Moulding…

EPTU Machine ETPU Moulding…

EPTU Machine ETPU Moulding…

EPS Machine EPS Block…

EPS Machine EPS Block…

EPS Machine EPS Block…

AEON MINING AEON MINING

AEON MINING AEON MINING

KSD Miner KSD Miner

KSD Miner KSD Miner

BCH Miner BCH Miner

BCH Miner BCH Miner

Like
bottom of page