Newbie question - sorry in advance

rdraper

New Member
Joined
Feb 22, 2011
Messages
8
I apologize in advance for a newbie question (but im learning :) )

I have a worksheet with around 10,000 line items, about 2000 of them are the same or similar item, yet are all over the sheet and not in order. Is it possible to do a "Find" or a "Find / Replace" for an item say in Column E and then have a value inserted in Column K.

Example.... in my worksheet in column E i have alot of items with the product number 1217-05. I would like to be able to assign the value "60" in column K to every row with the value of 1217-05 in column E.
(i hope that made sense) ... anyway is this possible to do without going thru a "Find All" and then manually entering the value in each row for column k?

Thanks in advance
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Actually you'll want to copy it into column K right? and the formula should reference column E like this.

=IF(E1="1217-05",60,"")
 
Upvote 0
Ok...im still confused or i didnt explain well....sorry. my example below:
Lets take my column E and say all the rows that have "1217-15-500" in them (and I have roughly 1500 rows containing this value in column E in this worksheet of 10000 rows) in any row of Column E where value is 1217-15-500, I would like to have the value 60 entered in that row, Column K.
I hope that helped.

E
1217-15-500
1217-20-500
1217-15-500
1217-30-500
1365-53-000
1219-36-056
1217-15-500
1570-02-110
 
Last edited:
Upvote 0
Then you need this formula.

=IF(E1="1217-15-500",60,"")

Copy and paste that formula into cell K1 and then autofill it down to the end of your data.
 
Upvote 0
Stiles had it right except you didn't give him enough information. Enter the following formula in Column K all of the way down the worksheet for every row that has information on it.

=IF(E1="1217-05-500",60,"")

Actually you'll want to copy it into column K right? and the formula should reference column E like this.

=IF(E1="1217-05",60,"")

Ok...im still confused or i didnt explain well....sorry. my example below:
Lets take my column E and say all the rows that have "1217-15-500" in them (and I have roughly 1500 rows containing this value in column E in this worksheet of 10000 rows) in any row of Column E where value is 1217-15-500, I would like to have the value 60 entered in that row, Column K.
I hope that helped.

E
1217-15-500
1217-20-500
1217-15-500
1217-30-500
1365-53-000
1219-36-056
1217-15-500
1570-02-110
 
Upvote 0

Forum statistics

Threads
1,215,455
Messages
6,124,937
Members
449,196
Latest member
Maxkapoor

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