+ Reply to Thread
Results 1 to 2 of 2

combo box as cell reference? how?

  1. #1
    Forum Contributor
    Join Date
    05-22-2006
    Posts
    103

    combo box as cell reference? how?

    HI...
    how can i use the combo box as a cell reference, so that when i choose a text from the combo box, and save it....the text on the combo box will saved on the cell specified...

  2. #2
    Christian
    Guest

    Re: combo box as cell reference? how?

    Here are two ways


    Private Sub ComboBox1_Change()

    ActiveCell.Value = ComboBox1.Value 'one way

    Cells(1, 2) = ComboBox1.Value 'another way
    End Sub


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1