Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have made a drop down list in excel. When I click on an option I want the
text to be added to another cell, so you in that way can choose several options from a dropdown list and have them all displayed in a cell just next to the list. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
guess you can't do it... I think I overestimated excel :(
|
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This will require a Worksheet_Change event procedure in VBA (macro)
-- AP "Calle" a écrit dans le message de news: ... guess you can't do it... I think I overestimated excel :( |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Never under-estimate Excel.... If you add this sub to the sheet1 tab in the VBA editor Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$1" Then If Target < "" Then Cells(1, 2) = Cells(1, 2) & "," & Target End If End If End Sub this will add values into B1 from a drop down in A1 -- mrice Research Scientist with many years of spreadsheet development experience ------------------------------------------------------------------------ mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931 View this thread: http://www.excelforum.com/showthread...hreadid=544782 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi!
It didn't work. I added this to the sheet1 tab in VBA editor and it did nothing. I am using a drop down meny useing the validation option. "mrice" skrev: Never under-estimate Excel.... If you add this sub to the sheet1 tab in the VBA editor Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$1" Then If Target < "" Then Cells(1, 2) = Cells(1, 2) & "," & Target End If End If End Sub this will add values into B1 from a drop down in A1 -- mrice Research Scientist with many years of spreadsheet development experience ------------------------------------------------------------------------ mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931 View this thread: http://www.excelforum.com/showthread...hreadid=544782 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Working spreadsheet attached +-------------------------------------------------------------------+ |Filename: Book1.zip | |Download: http://www.excelforum.com/attachment.php?postid=4808 | +-------------------------------------------------------------------+ -- mrice Research Scientist with many years of spreadsheet development experience ------------------------------------------------------------------------ mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931 View this thread: http://www.excelforum.com/showthread...hreadid=544782 |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi!
The download link doesn't work "mrice" wrote: Working spreadsheet attached +-------------------------------------------------------------------+ |Filename: Book1.zip | |Download: http://www.excelforum.com/attachment.php?postid=4808 | +-------------------------------------------------------------------+ -- mrice Research Scientist with many years of spreadsheet development experience ------------------------------------------------------------------------ mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931 View this thread: http://www.excelforum.com/showthread...hreadid=544782 |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I got the script to work, I had to activate macros lol, thx m8!!!!!
"mrice" wrote: Working spreadsheet attached +-------------------------------------------------------------------+ |Filename: Book1.zip | |Download: http://www.excelforum.com/attachment.php?postid=4808 | +-------------------------------------------------------------------+ -- mrice Research Scientist with many years of spreadsheet development experience ------------------------------------------------------------------------ mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931 View this thread: http://www.excelforum.com/showthread...hreadid=544782 |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a new question now:
I want an option in my drop down list to clear the cell where the selected products from the drop down list are displayed. How do I do that? Calle "Calle" wrote: I got the script to work, I had to activate macros lol, thx m8!!!!! "mrice" wrote: Working spreadsheet attached +-------------------------------------------------------------------+ |Filename: Book1.zip | |Download: http://www.excelforum.com/attachment.php?postid=4808 | +-------------------------------------------------------------------+ -- mrice Research Scientist with many years of spreadsheet development experience ------------------------------------------------------------------------ mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931 View this thread: http://www.excelforum.com/showthread...hreadid=544782 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dynamic Drop Down List | Excel Discussion (Misc queries) | |||
time sheet drop down lists | Excel Discussion (Misc queries) | |||
how to display subjects taught by a specific teacher upon selection of the teacher name in a drop down box | New Users to Excel | |||
validation list drop down box, how do I bring in text commands | Excel Discussion (Misc queries) | |||
Counting Repeated text or duplicates in a list | Excel Discussion (Misc queries) |