OFFER STOCK search

makinmomb

Active Member
Joined
Dec 23, 2013
Messages
401
This is my data on sheet1

DATECODEDESCRIPTIONAMOUNT
02/12/2013103.002.04SYN-147-C/P - SYNERGIE 4-WAY CONC BATH24,321
02/12/2013103.002.06SYN-109S-C/P - SYNERGIE 2-HOLE BASIN37,478
02/12/2013174.000.01TILE MORTAR IN WHITE NO.NIC-C13,448
02/12/2013100.000.33GEMMA 30 X 30 = ARIZONA BEIGE28,965
02/12/2013107.000.36TILE EDGING STRIPS 10mmx2.5m GLACIER672
<colgroup><col width="71" style="width: 53pt; mso-width-source: userset; mso-width-alt: 2596;" span="2"> <col width="337" style="width: 253pt; mso-width-source: userset; mso-width-alt: 12324;"> <col width="70" style="width: 53pt; mso-width-source: userset; mso-width-alt: 2560;"> <tbody> </tbody>

GEMMA ARIZONA is an offer stock where offer stock codes are on sheet2 row 1, what is the formula on cell E2 to tell go find match on offer database and comment OFFER if it finds match and leave comments if not offer stock thus the result should look as follows once I drag the formula

DATECODEDESCRIPTIONAMOUNT
02/12/2013103.002.04SYN-147-C/P - SYNERGIE 4-WAY CONC BATH24,321
02/12/2013103.002.06SYN-109S-C/P - SYNERGIE 2-HOLE BASIN37,478
02/12/2013174.000.01TILE MORTAR IN WHITE NO.NIC-C13,448
02/12/2013100.000.33GEMMA 30 X 30 = ARIZONA BEIGE28,965OFFER
02/12/2013107.000.36TILE EDGING STRIPS 10mmx2.5m GLACIER672
<colgroup><col width="71" style="width: 53pt; mso-width-source: userset; mso-width-alt: 2596;" span="2"> <col width="337" style="width: 253pt; mso-width-source: userset; mso-width-alt: 12324;"> <col width="70" style="width: 53pt; mso-width-source: userset; mso-width-alt: 2560;"> <col width="64" style="width: 48pt;"> <tbody> </tbody>
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
in E2 and copy down:
=IF(ISNA(MATCH(C2,Sheet2!1:1,0)),"","OFFER")
 
Upvote 0
in E2 and copy down:
=IF(ISNA(MATCH(C2,Sheet2!1:1,0)),"","OFFER")

Almost there that is exactly as per above If I copy paste the formula
=IF(ISNA(MATCH(C2,Sheet2!A:A,0)),"","OFFER")

When I drag it is not commenting OFFER on E5 where by it should
 
Upvote 0
I am sorted , I realised the C2 should then be B2

=IF(ISNA(MATCH(B2,Sheet2!A:A,0)),"","OFFER")

Thanks
 
Upvote 0

Forum statistics

Threads
1,214,645
Messages
6,120,711
Members
448,984
Latest member
foxpro

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