Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Programming Funk...Any help appreciated


Good morning all. I have an Excel spreadsheet with 2 worksheets. Th
first work sheet (worksheet A) I have a list (c2:c284) of names. O
the other worksheet (worksheet B) I have a dropdown box that include
values from the list on worksheet A (data validation:lists). There ar
4 cells in worksheet B that have this dropdown box with the selection o
names.

Here is what I am trying to do...Whenever I select a name from any o
the 4 cells in Worksheet B, I want to place the word \"Selected\" nex
to the value within the list on Worksheet A.

I have been through the mill working with VLOOKUP, MATCH, INDEX, LOOKU
and other functions. Nothing seems to work.

Thanks you all for any and all advice.

:

--
james081
-----------------------------------------------------------------------
james0810's Profile: http://www.excelforum.com/member.php...fo&userid=3639
View this thread: http://www.excelforum.com/showthread.php?threadid=56172

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,624
Default Programming Funk...Any help appreciated

One way, assuming that the WorksheetB cells are contiguous:

In WorksheetA:

D2: =IF(ISNA(MATCH(C2,WorksheetB!$A$1:$A$4,FALSE)),"", "Selected")

Copy down to D284.



In article ,
james0810
wrote:

Good morning all. I have an Excel spreadsheet with 2 worksheets. The
first work sheet (worksheet A) I have a list (c2:c284) of names. On
the other worksheet (worksheet B) I have a dropdown box that includes
values from the list on worksheet A (data validation:lists). There are
4 cells in worksheet B that have this dropdown box with the selection of
names.

Here is what I am trying to do...Whenever I select a name from any of
the 4 cells in Worksheet B, I want to place the word \"Selected\" next
to the value within the list on Worksheet A.

I have been through the mill working with VLOOKUP, MATCH, INDEX, LOOKUP
and other functions. Nothing seems to work.

Thanks you all for any and all advice.

:)

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default Programming Funk...Any help appreciated

assuming the DV is in B3:B6 on Sheet 2, In D2 on sheet 1 add

=IF(ISNUMBER(MATCH(Sheet1!$C2,Sheet2!$B$3:$B$6,0)) ,"Selected","")

and copy down

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"james0810" wrote
in message ...

Good morning all. I have an Excel spreadsheet with 2 worksheets. The
first work sheet (worksheet A) I have a list (c2:c284) of names. On
the other worksheet (worksheet B) I have a dropdown box that includes
values from the list on worksheet A (data validation:lists). There are
4 cells in worksheet B that have this dropdown box with the selection of
names.

Here is what I am trying to do...Whenever I select a name from any of
the 4 cells in Worksheet B, I want to place the word \"Selected\" next
to the value within the list on Worksheet A.

I have been through the mill working with VLOOKUP, MATCH, INDEX, LOOKUP
and other functions. Nothing seems to work.

Thanks you all for any and all advice.

:)


--
james0810
------------------------------------------------------------------------
james0810's Profile:

http://www.excelforum.com/member.php...o&userid=36391
View this thread: http://www.excelforum.com/showthread...hreadid=561723



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,092
Default Programming Funk...Any help appreciated

I think you want the value (name) in the validation list to append
"/Selected" to the name in the list if that name has already been selected
by another cell, so that "/Selected" will now appear in the list next to the
name. to do that follow McGimpsey's instructions with this modified formula:
=IF(ISNA(MATCH(C2,Sheet2!$A$1:$A$4,FALSE)),C2,CONC ATENATE(C2,"/Selected"))

That will create a second list. Now name the new list and point your Data
Validation cells to this new list.

Mike F
"JE McGimpsey" wrote in message
...
One way, assuming that the WorksheetB cells are contiguous:

In WorksheetA:

D2: =IF(ISNA(MATCH(C2,WorksheetB!$A$1:$A$4,FALSE)),"", "Selected")

Copy down to D284.



In article ,
james0810
wrote:

Good morning all. I have an Excel spreadsheet with 2 worksheets. The
first work sheet (worksheet A) I have a list (c2:c284) of names. On
the other worksheet (worksheet B) I have a dropdown box that includes
values from the list on worksheet A (data validation:lists). There are
4 cells in worksheet B that have this dropdown box with the selection of
names.

Here is what I am trying to do...Whenever I select a name from any of
the 4 cells in Worksheet B, I want to place the word \"Selected\" next
to the value within the list on Worksheet A.

I have been through the mill working with VLOOKUP, MATCH, INDEX, LOOKUP
and other functions. Nothing seems to work.

Thanks you all for any and all advice.

:)



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
Any Help Appreciated CALM1 Excel Worksheet Functions 3 June 17th 11 06:59 AM
Your Help is Appreciated Sarah_Lecturer Charts and Charting in Excel 1 July 31st 09 07:08 PM
Help is much appreciated for- V Excel Discussion (Misc queries) 10 May 28th 09 12:16 AM
a little complicated programming, help would be appreciated! mike Excel Programming 11 November 14th 05 01:34 PM
Help appreciated Diane Mallin Excel Programming 1 December 17th 03 01:35 AM


All times are GMT +1. The time now is 06:59 PM.

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"