Any other excel function rather than set FILTER

florencewhm

New Member
Joined
Sep 14, 2006
Messages
1
Hello excel experts,

this is my daily assignment & I have to filter one by one & sometimes it will create mistake if I miss out 1 of filter value. Furthermore I can not write a VBA scripts, is there any other method rather than filter one by one?

Column A:
Approved
Above 20%
Below 10%
Compliant

Column B
1) C*** 0.01
2) C*** $0.01
3) $0.01C***
4) $0.01/C***
5) $.01/C***
6) C***

7) R12345
8) REG 12345
9) 12345
10) $0.01-12345
11) $.01-12345
12) $0.01+REG
13) 12345 $0.01
14) 12345 $.01
15) 12345 REG

Column C
I set filter Any condition in column A & and if it fulfills the conditions 1) - 6) in column B, then I need the output in column C=CONTRACT

whereas if it fulfills the conditions 7) - 15) in column B, then I need the output in column C=REGISTRATION

Thanks
Flo
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Can you add another worksheet to your workbook. Let us say the name of this sheet is Sheet3

Then in your new Sheet Create these two lists one in Column A and another in Column B. Be sure to have the Two Columns formatted as Text.

Column A
C*** 0.01
C*** $0.01
$0.01C***
$0.01/C***
$.01/C***
C***

Column B
R12345
REG 12345
12345
$0.01-12345
$.01-12345
$0.01+REG
12345 $0.01
12345 $.01
12345 REG


Now Come back to your original Sheet and in Column C , Cell C2, write this formula,
Code:
=if(iserror(vlookup(B2, 'Sheet3'!A:A, 1, 0)),if(iserror(vlookup(B2, 'Sheet3'!B:B, 1, 0)),"Not in the list","Registration"), "Contract")

Hopefully this should help. I'm sorry I've not tested this myself since, as usual, my Excel's busy running some processes.
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,752
Members
448,989
Latest member
mariah3

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