data from a form to sheet

jinx_uk_98

Board Regular
Joined
Jul 3, 2005
Messages
105
Hi All,

I have a form which has a calendar control on and also a few textboxes I also a sheet that has dates 1/01/2006 - 31/12/2006 in column A.

I'm trying to get the data entered in the form to be inserted in the against the relevant cell on the sheet (sort of a lookup against the calendar control)

Does anyone have any ideas on how best to achieve this?

Many thanks

Kevin
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Something like this ....... ?
Code:
Sub UNTESTED()
    Dim Foundcell As Object
    Dim MyDate As Date
    Dim FoundRow As Long
    '-------------------------------------
    MyDate = textbox1.Value ' or whatever
    Set Foundcell = ActiveSheet.Columns(1).Find(what:=MyDate)
    If Foundcell Is Nothing Then
        MsgBox ("Could not find " & MyDate)
    Else
        FoundRow = Foundcell.Row
        ActiveSheet.Cells(FoundRow, 2).Value = textbox2.Value
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,702
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top