VLOOKUP with Multiple Criteria (Checkbox and Text)

LauraEdson10

New Member
Joined
Apr 10, 2018
Messages
21
Office Version
  1. 365
Platform
  1. Windows
I have the following tick boxes: "New" in Cell B18, "Used" in C18 and "Refurbished" in D18.

I have a "Make" which would just be text entered i.e. "Mitsubishi", "Toyota" etc in B22.

If the "New" checkbox is ticked in B18 and a Make is entered into B22, I want it to do a VLOOKUP to my "Warranty" sheet.

For example,
a New Cesab would have 12 Months Parts & Labour Warranty
a New Combilift would have 24 Months Parts & Labour Warranty
a New Mitsubishi would have 36 Months PArts & Labour Warranty

etc

Any "Used" or "Refurbished" machine from the text boxes, regardless of "Make" would be 3 months parts and labour.


I just can't figure it out and have been looking at other threads for 2 hours trying various options - nothing seems to work.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
To understand the method, follow these instrutions in a test workbook and then adapt to your own requirements

1. open a NEW workbook, insert a new sheet and paste values below into Sheet2 in cells A1:B4

[TABLE="width: 150"]
<tbody>[TR]
[TD]Models[/TD]
[TD]Warranty[/TD]
[/TR]
[TR]
[TD]Cesab[/TD]
[TD="align: right"]12[/TD]
[/TR]
[TR]
[TD]Combilift[/TD]
[TD="align: right"]24[/TD]
[/TR]
[TR]
[TD]Mitsubishi[/TD]
[TD="align: right"]36[/TD]
[/TR]
</tbody>[/TABLE]

2. insert a (Form Control) Check Box in cell B18

3. right-click on Check Box \ Format Control \ cell link A18 \ OK

4. formula in Sheet1 cell C22 =IF($A$18=TRUE,VLOOKUP(B22,Sheet2!$A$2:$B$4,2,0),3)

5. select Sheet1 B22 \ click on Data tab \ Data Validation \ select List \ source formula =Sheet2!$A$2:$A$4 \ OK

6. select different values from dropdown in B22 and check\uncheck the Check Box in B18 to test formula

Consider

- creating a named range for your lookup table
- are parts and labour warranties ALWAYS identical? (they are in your explanation but is this always true for all makes?)

Note
- the formula requires a linked cell to determine check box value
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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