Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 258
Default ListBox problem

Thanks a lot works great.


"Norman Jones" wrote in message
...
Hi Patrick,

Try:

ActiveCell.Value = ListBox1.List(ListBox1.ListIndex, 0)
ActiveCell(2, 1).Value = ListBox1.List(ListBox1.ListIndex, 6)

---
Regards,
Norman



"Patrick Simonds" wrote in message
...
Thank You your code worked to a point. I need this to work from the
active cell not from column A. So if I am in cell B5 I want the results
in cells B5 and B6 or if in cell R20 the results would need to go into
cells R20 and R21 ect.



"Nigel" wrote in message
...
I used OFFSET as part of the range definition worked for me, I notice
that
your column references are 0 and 7 suggesting there might be 8 columns?
When you stated there are 7, so you might want to check that out as
well.

Private Sub CommandButton3_Click()

Dim rng

Set rng = Cells(ActiveCell.Row, 1)

rng.Offset(0, 0).Value = ListBox1.List(ListBox1.ListIndex, 0)
rng.Offset(0, 1).Value = ListBox1.List(ListBox1.ListIndex, 7)

Unload Me

End Sub

--
Cheers
Nigel





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
Listbox Problem browie Excel Discussion (Misc queries) 5 August 22nd 05 02:03 PM
Listbox Problem browie Excel Programming 5 August 22nd 05 02:03 PM
listbox problem #2 Keith Excel Programming 4 April 12th 05 06:32 PM
Listbox Problem [email protected] Excel Programming 4 August 19th 04 06:47 PM
listbox problem CAA[_11_] Excel Programming 4 January 7th 04 03:27 PM


All times are GMT +1. The time now is 11:25 AM.

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

About Us

"It's about Microsoft Excel"