+ Reply to Thread
Results 1 to 2 of 2

textbox to Cell date format issues

Hybrid View

  1. #1
    Registered User
    Join Date
    03-02-2008
    Posts
    42

    textbox to Cell date format issues

    Hi,

    I am still new at these things so can anyone help me with the issue i am havinig with a userform textbox and the format it shows dates on the excel cell. I type in as a 01/02/2008 but it comes out on the cell as 02/01/2008. below is the code I use to link textbox to the cell


    
    Private Sub TextBox2_Change()
    Dim R As Range
    Dim S As String
    
    Set R = Sheet1.Range("w4")
    S = TradeHorizontal1.TextBox2.Value
    
    R.Value = S
    
    End Sub
    
    
    End Sub
    So can anyone tell me how to make the cell display the correct date?

    Also I have two textbox's I want to know how I will be able to make it so that the user has to type lower date on Textbox1 and a Higher date on Textbox2, otherwise they get and error message

    And they can only type in this format "dd/mm/yyyy"

    If anyone can help me it would much appreciated

    Thank you

    Panic

  2. #2
    Forum Contributor
    Join Date
    03-25-2008
    MS-Off Ver
    Excel, Outlook, Word 2007/2003
    Posts
    245
    Not tested but try this.
    Private Sub TextBox2_Change()
    Dim R As Range
    'use a datevariable
    Dim S As Date
    Set R = Sheet1.Range("w4")
    'store text as date
    S = CDate(TradeHorizontal1.TextBox2.Value)
    R.Value = S
    End Sub
    Charlize

+ 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