Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 64
Default Insert a value in a cell based upon a comparison of cell values in 2 separate worksheets

What would be the best way to approach this?

I have a hugh list of transactions that I need to sort on -- each
transaction has a Salesperson with falls into (2) distinct Sales Categories:
(Private) & (Commercial).

For reasons beyond my control, the decision was made not to include these
category fields on the worksheets, so I created a listing of all the
Salesperson with their corresponding Sales Categories in a separate
worksheet.


I have the following code -- which does a VLOOKUP on Cell F2
(Salesperson1!F2) against Salesperson2!A2:A4000)
CODE:

=VLOOKUP(F2,Salesperson2!A2:A4000,1,FALSE)

Here's what I'm trying to do ...

I'd like use the values in Salesperson!F2:F4000 and search for these valuse
in Salesperson!A2:A4000 -- for each corresponding MATCH (ie,
Salesperson1!F2 = Salesperson2!A2, insert the value of Salesperson2!B2 into
Salesperson1!K2).

What would be the best way to approach this? I suspect that I'll need to
Loop through records Salesperson1!F2:F4000.

Thanks in advance




  #2   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Insert a value in a cell based upon a comparison of cell values in 2separate worksheets

I may be missing something, but it looks like you want to match up the value in
F2 to something in column A of the worksheet name salesperson2 and return the
value from column F.

If that's the case, then this would go in K2:
=vlookup(f2,SalesPerson2!$a$2:$F$4000,6,false)

Debra Dalgleish has lots of notes on =vlookup():
http://www.contextures.com/xlFunctions02.html



Doctorjones_md wrote:

What would be the best way to approach this?

I have a hugh list of transactions that I need to sort on -- each
transaction has a Salesperson with falls into (2) distinct Sales Categories:
(Private) & (Commercial).

For reasons beyond my control, the decision was made not to include these
category fields on the worksheets, so I created a listing of all the
Salesperson with their corresponding Sales Categories in a separate
worksheet.

I have the following code -- which does a VLOOKUP on Cell F2
(Salesperson1!F2) against Salesperson2!A2:A4000)
CODE:

=VLOOKUP(F2,Salesperson2!A2:A4000,1,FALSE)

Here's what I'm trying to do ...

I'd like use the values in Salesperson!F2:F4000 and search for these valuse
in Salesperson!A2:A4000 -- for each corresponding MATCH (ie,
Salesperson1!F2 = Salesperson2!A2, insert the value of Salesperson2!B2 into
Salesperson1!K2).

What would be the best way to approach this? I suspect that I'll need to
Loop through records Salesperson1!F2:F4000.

Thanks in advance


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 64
Default Insert a value in a cell based upon a comparison of cell values in 2 separate worksheets

Dave,

Thank you for the quick reply -- I want to return the value from column B of
Salesperson2, so I had the following formula in Cell K2 of Salesperson1:
=VLOOKUP(F2,Salesrep1!A2:B1500,2,FALSE)

This would work great if the data in each worksheet was evenly matched.
Here's my problem ...

In Salesperson1, I have 1500 entries (a total of 102 sales reps spread over
1500 transactions). The first 20 rows (A2:A21) in Salesperson1 are for
sales rep Scott Anderson, but the only reference to Scott Anderson is in
cell A3 of Salesperson2. I need for the code to take the value of
Salesperson1!Ax (where x is the row) and find that value in Salesperson2!Ax
(where x is the row) and return the value of Salesperson!Bx (where x is the
row) in Salesperson1!Kx (where x is the row).

Example of data:
Worksheet SALESPERSON1
Worksheet SALESPERSON2

Salesperson (Cell Ax) Department (cell Kx)
Salesperson (Cell Ax) Department (Cell Bx)
Scott Anderson
Greg Albert 10
Scott Anderson
Scott Anderson 5
Scott Anderson
Tina Alyson 2
Scott Anderson
Debbie Baker 1
Scott Anderson
Tim Davis 7
Scott Anderson
Scott Anderson
Scott Anderson
Tim Davis


Any ideas on how to achieve this?

Thanks again for your help.
, and the
"Dave Peterson" wrote in message
...
I may be missing something, but it looks like you want to match up the
value in
F2 to something in column A of the worksheet name salesperson2 and return
the
value from column F.

If that's the case, then this would go in K2:
=vlookup(f2,SalesPerson2!$a$2:$F$4000,6,false)

Debra Dalgleish has lots of notes on =vlookup():
http://www.contextures.com/xlFunctions02.html



Doctorjones_md wrote:

What would be the best way to approach this?

I have a hugh list of transactions that I need to sort on -- each
transaction has a Salesperson with falls into (2) distinct Sales
Categories:
(Private) & (Commercial).

For reasons beyond my control, the decision was made not to include these
category fields on the worksheets, so I created a listing of all the
Salesperson with their corresponding Sales Categories in a separate
worksheet.

I have the following code -- which does a VLOOKUP on Cell F2
(Salesperson1!F2) against Salesperson2!A2:A4000)
CODE:

=VLOOKUP(F2,Salesperson2!A2:A4000,1,FALSE)

Here's what I'm trying to do ...

I'd like use the values in Salesperson!F2:F4000 and search for these
valuse
in Salesperson!A2:A4000 -- for each corresponding MATCH (ie,
Salesperson1!F2 = Salesperson2!A2, insert the value of Salesperson2!B2
into
Salesperson1!K2).

What would be the best way to approach this? I suspect that I'll need to
Loop through records Salesperson1!F2:F4000.

Thanks in advance


--

Dave Peterson



  #4   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Insert a value in a cell based upon a comparison of cell values in2 separate worksheets

I would spend some time putting a key name on each of the rows in that second
worksheet.

Doctorjones_md wrote:

Dave,

Thank you for the quick reply -- I want to return the value from column B of
Salesperson2, so I had the following formula in Cell K2 of Salesperson1:
=VLOOKUP(F2,Salesrep1!A2:B1500,2,FALSE)

This would work great if the data in each worksheet was evenly matched.
Here's my problem ...

In Salesperson1, I have 1500 entries (a total of 102 sales reps spread over
1500 transactions). The first 20 rows (A2:A21) in Salesperson1 are for
sales rep Scott Anderson, but the only reference to Scott Anderson is in
cell A3 of Salesperson2. I need for the code to take the value of
Salesperson1!Ax (where x is the row) and find that value in Salesperson2!Ax
(where x is the row) and return the value of Salesperson!Bx (where x is the
row) in Salesperson1!Kx (where x is the row).

Example of data:
Worksheet SALESPERSON1
Worksheet SALESPERSON2

Salesperson (Cell Ax) Department (cell Kx)
Salesperson (Cell Ax) Department (Cell Bx)
Scott Anderson
Greg Albert 10
Scott Anderson
Scott Anderson 5
Scott Anderson
Tina Alyson 2
Scott Anderson
Debbie Baker 1
Scott Anderson
Tim Davis 7
Scott Anderson
Scott Anderson
Scott Anderson
Tim Davis

Any ideas on how to achieve this?

Thanks again for your help.
, and the
"Dave Peterson" wrote in message
...
I may be missing something, but it looks like you want to match up the
value in
F2 to something in column A of the worksheet name salesperson2 and return
the
value from column F.

If that's the case, then this would go in K2:
=vlookup(f2,SalesPerson2!$a$2:$F$4000,6,false)

Debra Dalgleish has lots of notes on =vlookup():
http://www.contextures.com/xlFunctions02.html



Doctorjones_md wrote:

What would be the best way to approach this?

I have a hugh list of transactions that I need to sort on -- each
transaction has a Salesperson with falls into (2) distinct Sales
Categories:
(Private) & (Commercial).

For reasons beyond my control, the decision was made not to include these
category fields on the worksheets, so I created a listing of all the
Salesperson with their corresponding Sales Categories in a separate
worksheet.

I have the following code -- which does a VLOOKUP on Cell F2
(Salesperson1!F2) against Salesperson2!A2:A4000)
CODE:

=VLOOKUP(F2,Salesperson2!A2:A4000,1,FALSE)

Here's what I'm trying to do ...

I'd like use the values in Salesperson!F2:F4000 and search for these
valuse
in Salesperson!A2:A4000 -- for each corresponding MATCH (ie,
Salesperson1!F2 = Salesperson2!A2, insert the value of Salesperson2!B2
into
Salesperson1!K2).

What would be the best way to approach this? I suspect that I'll need to
Loop through records Salesperson1!F2:F4000.

Thanks in advance


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 64
Default Insert a value in a cell based upon a comparison of cell values in 2 separate worksheets

Dave,

Thanks for your recommendation -- I was looking into your suggestion, then
found that my code -- (=VLOOKUP(F2,Salesperson!$A$2:$B$1500,2,TRUE) --
entered in Cell K2 with a slight modification of the code -- gave me exactly
what I was looking for -- I just needed to change to Absolute Reference and
change FALSE to TRUE:)

-- "Dave Peterson" wrote in message
...
I would spend some time putting a key name on each of the rows in that
second
worksheet.

Doctorjones_md wrote:

Dave,

Thank you for the quick reply -- I want to return the value from column B
of
Salesperson2, so I had the following formula in Cell K2 of Salesperson1:
=VLOOKUP(F2,Salesrep1!A2:B1500,2,FALSE)

This would work great if the data in each worksheet was evenly matched.
Here's my problem ...

In Salesperson1, I have 1500 entries (a total of 102 sales reps spread
over
1500 transactions). The first 20 rows (A2:A21) in Salesperson1 are for
sales rep Scott Anderson, but the only reference to Scott Anderson is in
cell A3 of Salesperson2. I need for the code to take the value of
Salesperson1!Ax (where x is the row) and find that value in
Salesperson2!Ax
(where x is the row) and return the value of Salesperson!Bx (where x is
the
row) in Salesperson1!Kx (where x is the row).

Example of data:
Worksheet SALESPERSON1
Worksheet SALESPERSON2

Salesperson (Cell Ax) Department (cell Kx)
Salesperson (Cell Ax) Department (Cell Bx)
Scott Anderson
Greg Albert 10
Scott Anderson
Scott Anderson 5
Scott Anderson
Tina Alyson 2
Scott Anderson
Debbie Baker 1
Scott Anderson
Tim Davis 7
Scott Anderson
Scott Anderson
Scott Anderson
Tim Davis

Any ideas on how to achieve this?

Thanks again for your help.
, and the
"Dave Peterson" wrote in message
...
I may be missing something, but it looks like you want to match up the
value in
F2 to something in column A of the worksheet name salesperson2 and
return
the
value from column F.

If that's the case, then this would go in K2:
=vlookup(f2,SalesPerson2!$a$2:$F$4000,6,false)

Debra Dalgleish has lots of notes on =vlookup():
http://www.contextures.com/xlFunctions02.html



Doctorjones_md wrote:

What would be the best way to approach this?

I have a hugh list of transactions that I need to sort on -- each
transaction has a Salesperson with falls into (2) distinct Sales
Categories:
(Private) & (Commercial).

For reasons beyond my control, the decision was made not to include
these
category fields on the worksheets, so I created a listing of all the
Salesperson with their corresponding Sales Categories in a separate
worksheet.

I have the following code -- which does a VLOOKUP on Cell F2
(Salesperson1!F2) against Salesperson2!A2:A4000)
CODE:

=VLOOKUP(F2,Salesperson2!A2:A4000,1,FALSE)

Here's what I'm trying to do ...

I'd like use the values in Salesperson!F2:F4000 and search for these
valuse
in Salesperson!A2:A4000 -- for each corresponding MATCH (ie,
Salesperson1!F2 = Salesperson2!A2, insert the value of Salesperson2!B2
into
Salesperson1!K2).

What would be the best way to approach this? I suspect that I'll need
to
Loop through records Salesperson1!F2:F4000.

Thanks in advance

--

Dave Peterson


--

Dave Peterson





  #6   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Insert a value in a cell based upon a comparison of cell values in2 separate worksheets

Since you're matching on a name, I bet you want an exact match.

I'd use:
=VLOOKUP(F2,Salesperson!$A$2:$B$1500,2,false)




Doctorjones_md wrote:

Dave,

Thanks for your recommendation -- I was looking into your suggestion, then
found that my code -- (=VLOOKUP(F2,Salesperson!$A$2:$B$1500,2,TRUE) --
entered in Cell K2 with a slight modification of the code -- gave me exactly
what I was looking for -- I just needed to change to Absolute Reference and
change FALSE to TRUE:)

-- "Dave Peterson" wrote in message
...
I would spend some time putting a key name on each of the rows in that
second
worksheet.

Doctorjones_md wrote:

Dave,

Thank you for the quick reply -- I want to return the value from column B
of
Salesperson2, so I had the following formula in Cell K2 of Salesperson1:
=VLOOKUP(F2,Salesrep1!A2:B1500,2,FALSE)

This would work great if the data in each worksheet was evenly matched.
Here's my problem ...

In Salesperson1, I have 1500 entries (a total of 102 sales reps spread
over
1500 transactions). The first 20 rows (A2:A21) in Salesperson1 are for
sales rep Scott Anderson, but the only reference to Scott Anderson is in
cell A3 of Salesperson2. I need for the code to take the value of
Salesperson1!Ax (where x is the row) and find that value in
Salesperson2!Ax
(where x is the row) and return the value of Salesperson!Bx (where x is
the
row) in Salesperson1!Kx (where x is the row).

Example of data:
Worksheet SALESPERSON1
Worksheet SALESPERSON2

Salesperson (Cell Ax) Department (cell Kx)
Salesperson (Cell Ax) Department (Cell Bx)
Scott Anderson
Greg Albert 10
Scott Anderson
Scott Anderson 5
Scott Anderson
Tina Alyson 2
Scott Anderson
Debbie Baker 1
Scott Anderson
Tim Davis 7
Scott Anderson
Scott Anderson
Scott Anderson
Tim Davis

Any ideas on how to achieve this?

Thanks again for your help.
, and the
"Dave Peterson" wrote in message
...
I may be missing something, but it looks like you want to match up the
value in
F2 to something in column A of the worksheet name salesperson2 and
return
the
value from column F.

If that's the case, then this would go in K2:
=vlookup(f2,SalesPerson2!$a$2:$F$4000,6,false)

Debra Dalgleish has lots of notes on =vlookup():
http://www.contextures.com/xlFunctions02.html



Doctorjones_md wrote:

What would be the best way to approach this?

I have a hugh list of transactions that I need to sort on -- each
transaction has a Salesperson with falls into (2) distinct Sales
Categories:
(Private) & (Commercial).

For reasons beyond my control, the decision was made not to include
these
category fields on the worksheets, so I created a listing of all the
Salesperson with their corresponding Sales Categories in a separate
worksheet.

I have the following code -- which does a VLOOKUP on Cell F2
(Salesperson1!F2) against Salesperson2!A2:A4000)
CODE:

=VLOOKUP(F2,Salesperson2!A2:A4000,1,FALSE)

Here's what I'm trying to do ...

I'd like use the values in Salesperson!F2:F4000 and search for these
valuse
in Salesperson!A2:A4000 -- for each corresponding MATCH (ie,
Salesperson1!F2 = Salesperson2!A2, insert the value of Salesperson2!B2
into
Salesperson1!K2).

What would be the best way to approach this? I suspect that I'll need
to
Loop through records Salesperson1!F2:F4000.

Thanks in advance

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 64
Default Insert a value in a cell based upon a comparison of cell values in 2 separate worksheets

Dave,

Thanks for catching that -- I didn't have any mismatches on names, but I
changed Gomez to Gomes in Salesperson1 and saw the N/A value return when I
made the modification your suggested.
Thanks for all your time and patience -- this is a very valuable forum!


"Dave Peterson" wrote in message
...
Since you're matching on a name, I bet you want an exact match.

I'd use:
=VLOOKUP(F2,Salesperson!$A$2:$B$1500,2,false)




Doctorjones_md wrote:

Dave,

Thanks for your recommendation -- I was looking into your suggestion,
then
found that my code -- (=VLOOKUP(F2,Salesperson!$A$2:$B$1500,2,TRUE) --
entered in Cell K2 with a slight modification of the code -- gave me
exactly
what I was looking for -- I just needed to change to Absolute Reference
and
change FALSE to TRUE:)

-- "Dave Peterson" wrote in message
...
I would spend some time putting a key name on each of the rows in that
second
worksheet.

Doctorjones_md wrote:

Dave,

Thank you for the quick reply -- I want to return the value from
column B
of
Salesperson2, so I had the following formula in Cell K2 of
Salesperson1:
=VLOOKUP(F2,Salesrep1!A2:B1500,2,FALSE)

This would work great if the data in each worksheet was evenly
matched.
Here's my problem ...

In Salesperson1, I have 1500 entries (a total of 102 sales reps spread
over
1500 transactions). The first 20 rows (A2:A21) in Salesperson1 are
for
sales rep Scott Anderson, but the only reference to Scott Anderson is
in
cell A3 of Salesperson2. I need for the code to take the value of
Salesperson1!Ax (where x is the row) and find that value in
Salesperson2!Ax
(where x is the row) and return the value of Salesperson!Bx (where x
is
the
row) in Salesperson1!Kx (where x is the row).

Example of data:
Worksheet SALESPERSON1
Worksheet SALESPERSON2

Salesperson (Cell Ax) Department (cell Kx)
Salesperson (Cell Ax) Department (Cell Bx)
Scott Anderson
Greg Albert 10
Scott Anderson
Scott Anderson 5
Scott Anderson
Tina Alyson 2
Scott Anderson
Debbie Baker 1
Scott Anderson
Tim Davis 7
Scott Anderson
Scott Anderson
Scott Anderson
Tim Davis

Any ideas on how to achieve this?

Thanks again for your help.
, and the
"Dave Peterson" wrote in message
...
I may be missing something, but it looks like you want to match up
the
value in
F2 to something in column A of the worksheet name salesperson2 and
return
the
value from column F.

If that's the case, then this would go in K2:
=vlookup(f2,SalesPerson2!$a$2:$F$4000,6,false)

Debra Dalgleish has lots of notes on =vlookup():
http://www.contextures.com/xlFunctions02.html



Doctorjones_md wrote:

What would be the best way to approach this?

I have a hugh list of transactions that I need to sort on -- each
transaction has a Salesperson with falls into (2) distinct Sales
Categories:
(Private) & (Commercial).

For reasons beyond my control, the decision was made not to include
these
category fields on the worksheets, so I created a listing of all
the
Salesperson with their corresponding Sales Categories in a separate
worksheet.

I have the following code -- which does a VLOOKUP on Cell F2
(Salesperson1!F2) against Salesperson2!A2:A4000)
CODE:

=VLOOKUP(F2,Salesperson2!A2:A4000,1,FALSE)

Here's what I'm trying to do ...

I'd like use the values in Salesperson!F2:F4000 and search for
these
valuse
in Salesperson!A2:A4000 -- for each corresponding MATCH (ie,
Salesperson1!F2 = Salesperson2!A2, insert the value of
Salesperson2!B2
into
Salesperson1!K2).

What would be the best way to approach this? I suspect that I'll
need
to
Loop through records Salesperson1!F2:F4000.

Thanks in advance

--

Dave Peterson

--

Dave Peterson


--

Dave Peterson



  #8   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Insert a value in a cell based upon a comparison of cell values in2 separate worksheets

Glad you found out about the difference before it was too late!

Doctorjones_md wrote:

Dave,

Thanks for catching that -- I didn't have any mismatches on names, but I
changed Gomez to Gomes in Salesperson1 and saw the N/A value return when I
made the modification your suggested.
Thanks for all your time and patience -- this is a very valuable forum!

"Dave Peterson" wrote in message
...
Since you're matching on a name, I bet you want an exact match.

I'd use:
=VLOOKUP(F2,Salesperson!$A$2:$B$1500,2,false)




Doctorjones_md wrote:

Dave,

Thanks for your recommendation -- I was looking into your suggestion,
then
found that my code -- (=VLOOKUP(F2,Salesperson!$A$2:$B$1500,2,TRUE) --
entered in Cell K2 with a slight modification of the code -- gave me
exactly
what I was looking for -- I just needed to change to Absolute Reference
and
change FALSE to TRUE:)

-- "Dave Peterson" wrote in message
...
I would spend some time putting a key name on each of the rows in that
second
worksheet.

Doctorjones_md wrote:

Dave,

Thank you for the quick reply -- I want to return the value from
column B
of
Salesperson2, so I had the following formula in Cell K2 of
Salesperson1:
=VLOOKUP(F2,Salesrep1!A2:B1500,2,FALSE)

This would work great if the data in each worksheet was evenly
matched.
Here's my problem ...

In Salesperson1, I have 1500 entries (a total of 102 sales reps spread
over
1500 transactions). The first 20 rows (A2:A21) in Salesperson1 are
for
sales rep Scott Anderson, but the only reference to Scott Anderson is
in
cell A3 of Salesperson2. I need for the code to take the value of
Salesperson1!Ax (where x is the row) and find that value in
Salesperson2!Ax
(where x is the row) and return the value of Salesperson!Bx (where x
is
the
row) in Salesperson1!Kx (where x is the row).

Example of data:
Worksheet SALESPERSON1
Worksheet SALESPERSON2

Salesperson (Cell Ax) Department (cell Kx)
Salesperson (Cell Ax) Department (Cell Bx)
Scott Anderson
Greg Albert 10
Scott Anderson
Scott Anderson 5
Scott Anderson
Tina Alyson 2
Scott Anderson
Debbie Baker 1
Scott Anderson
Tim Davis 7
Scott Anderson
Scott Anderson
Scott Anderson
Tim Davis

Any ideas on how to achieve this?

Thanks again for your help.
, and the
"Dave Peterson" wrote in message
...
I may be missing something, but it looks like you want to match up
the
value in
F2 to something in column A of the worksheet name salesperson2 and
return
the
value from column F.

If that's the case, then this would go in K2:
=vlookup(f2,SalesPerson2!$a$2:$F$4000,6,false)

Debra Dalgleish has lots of notes on =vlookup():
http://www.contextures.com/xlFunctions02.html



Doctorjones_md wrote:

What would be the best way to approach this?

I have a hugh list of transactions that I need to sort on -- each
transaction has a Salesperson with falls into (2) distinct Sales
Categories:
(Private) & (Commercial).

For reasons beyond my control, the decision was made not to include
these
category fields on the worksheets, so I created a listing of all
the
Salesperson with their corresponding Sales Categories in a separate
worksheet.

I have the following code -- which does a VLOOKUP on Cell F2
(Salesperson1!F2) against Salesperson2!A2:A4000)
CODE:

=VLOOKUP(F2,Salesperson2!A2:A4000,1,FALSE)

Here's what I'm trying to do ...

I'd like use the values in Salesperson!F2:F4000 and search for
these
valuse
in Salesperson!A2:A4000 -- for each corresponding MATCH (ie,
Salesperson1!F2 = Salesperson2!A2, insert the value of
Salesperson2!B2
into
Salesperson1!K2).

What would be the best way to approach this? I suspect that I'll
need
to
Loop through records Salesperson1!F2:F4000.

Thanks in advance

--

Dave Peterson

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Insert a value in a cell based upon a comparison of cell values in 2 separate worksheets Doctorjones_md Excel Discussion (Misc queries) 7 June 8th 07 09:32 PM
Separate values in cell by delimiter JR Excel Discussion (Misc queries) 13 February 6th 07 05:56 PM
sumif based on cell comparison in excel Bunty Excel Worksheet Functions 2 November 13th 06 03:38 PM
same named cell in separate worksheets Al.Caughey Excel Discussion (Misc queries) 2 June 16th 06 05:12 PM
how do I insert a cell based on its match with an adjacent cell? Gabbon Excel Worksheet Functions 12 January 24th 06 12:28 PM


All times are GMT +1. The time now is 07:02 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"