VBA code to set date format for a specific column as “yyyy-mm-dd”

后端 未结 3 807
太阳男子
太阳男子 2020-12-15 05:40

I have a macro which I specify the date (in mm/dd/yyyy) in a textbox and I want to set this value for column A in yyyy-mm-dd format. I have the following code:



        
3条回答
  •  攒了一身酷
    2020-12-15 06:32

    You are applying the formatting to the workbook that has the code, not the added workbook. You'll want to get in the habit of fully qualifying sheet and range references. The code below does that and works for me in Excel 2010:

    Sub test()
    Dim wb As Excel.Workbook
    Set wb = Workbooks.Add
    With wb.Sheets(1)
        .Range("A1") = "Acctdate"
        .Range("B1") = "Ledger"
        .Range("C1") = "CY"
        .Range("D1") = "BusinessUnit"
        .Range("E1") = "OperatingUnit"
        .Range("F1") = "LOB"
        .Range("G1") = "Account"
        .Range("H1") = "TreatyCode"
        .Range("I1") = "Amount"
        .Range("J1") = "TransactionCurrency"
        .Range("K1") = "USDEquivalentAmount"
        .Range("L1") = "KeyCol"
        .Range("A2", "A50000").Value = Me.TextBox3.Value
        .Range("A2", "A50000").NumberFormat = "yyyy-mm-dd"
    End With
    End Sub
    

提交回复
热议问题