How do I create multiple if statments?

bucci35

Active Member
Joined
Jul 6, 2002
Messages
350
Office Version
  1. 365
Platform
  1. Windows
I have combo box that has 16 names to choose from and puts them in a1
I want to make a formula that says if a1=town, then 2, if a1=city then 2 and so forth..16 times. How can I do this?
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
OOPs, if a1 =town then 1, if a1=city then 2 and so forth....
 
Upvote 0
It isn't quite clear if you want to create the formula on the Excel spreadsheet or in VBA.

If on the Excel sheet, create a lookup table for all of your values and use the VLOOKUP function (check out Excel's help on VLOOKUP for details and examples).

If in VBA, you can use a Select Case statement, for example
Code:
Select Case Range("A1")
   Case "town"
      Range("B1")=1
   Case "city"
      Range("B1")=2
...
   Case Else
      Range("B1")=99
End Select
 
Upvote 0

Forum statistics

Threads
1,214,426
Messages
6,119,414
Members
448,895
Latest member
omarahmed1

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