ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   create macros that uses if-then-else statments (https://www.excelbanter.com/excel-programming/289199-create-macros-uses-if-then-else-statments.html)

Ross K

create macros that uses if-then-else statments
 
I am new to using Macros and am looking for info on creating macros which will allow me to use if-then-else statements based on set variables and then print out the results of the conditional statement. For example: if content of cell A1=var1, print statement1, elseif content cell A1= var2 print statement2, elseif content cell A1= var3 print statement3 and so on up to var12. All content will be text If someone could point me in the right direction to learn about this it would be greatly appreciated, Thanks, Ross K.

John Wilson

create macros that uses if-then-else statments
 
Ross,

All one line for each (be careful of word wrap):

If Range("A1") = var1 Then Worksheets("print statement 1").printout
copies:=1

John

"Ross K" wrote in message
...
I am new to using Macros and am looking for info on creating macros which

will allow me to use if-then-else statements based on set variables and then
print out the results of the conditional statement. For example: if
content of cell A1=var1, print statement1, elseif content cell A1= var2
print statement2, elseif content cell A1= var3 print statement3 and so on up
to var12. All content will be text If someone could point me in the right
direction to learn about this it would be greatly appreciated, Thanks, Ross
K.



pikus

create macros that uses if-then-else statments
 
If Then statements are pretty straight foreward.
If Worksheets(1).Cells(1, 1).Value = “Hello World!” Then
MsgBox “Hello World!”
End If

But for what you’re asking about, use a Select Case statement instead.

Select Case Worksheets(1).Cells(1, 1).Value
Case1 “Hello World!”
MsgBox “Hello World!”
Case2 “Goodnight sweet prince.”
MsgBox “Hamlet”
Case3 etc…etc…etc…

End Select

VBA Help should have enough info to take it from here, but let us know
if it doesn't.

- Pikus


---
Message posted from http://www.ExcelForum.com/


Otto Moehrbach[_6_]

create macros that uses if-then-else statments
 
Ross
I would use a Select Case construct with that many variables. HTH
Otto
"Ross K" wrote in message
...
I am new to using Macros and am looking for info on creating macros which

will allow me to use if-then-else statements based on set variables and then
print out the results of the conditional statement. For example: if
content of cell A1=var1, print statement1, elseif content cell A1= var2
print statement2, elseif content cell A1= var3 print statement3 and so on up
to var12. All content will be text If someone could point me in the right
direction to learn about this it would be greatly appreciated, Thanks, Ross
K.




All times are GMT +1. The time now is 10:27 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com