![]() |
Dates in VBA
I'm trying to do something very simple in Visual Basic, but am having
trouble. All I want to do is put a date in a certain cell, based on a date in a different cell on a different sheet. The formula I would use if it weren't visual basic is: =DATE(Year(Info!G2),Month(Info!G2),1) How can I do this using visual basic? Thanks! Brett |
Dates in VBA
dim myCell as range
set mycell = worksheets("info").range("G2") with activecell .numberformat = "mm/dd/yyyy" .value = dateserial(year(mycell.value), month(mycell.value), 1) end with wrote: I'm trying to do something very simple in Visual Basic, but am having trouble. All I want to do is put a date in a certain cell, based on a date in a different cell on a different sheet. The formula I would use if it weren't visual basic is: =DATE(Year(Info!G2),Month(Info!G2),1) How can I do this using visual basic? Thanks! Brett -- Dave Peterson |
Dates in VBA
info!G2 === Worksheets("Info").Range("G2") in VBA
Range("a1") = DateSerial(Year(Worksheets("Info").Range("G2")), Month(Worksheets("Info").Range("G2")), 1) " wrote: I'm trying to do something very simple in Visual Basic, but am having trouble. All I want to do is put a date in a certain cell, based on a date in a different cell on a different sheet. The formula I would use if it weren't visual basic is: =DATE(Year(Info!G2),Month(Info!G2),1) How can I do this using visual basic? Thanks! Brett |
Dates in VBA
That did it! Thanks a lot!
Dave Peterson wrote: dim myCell as range set mycell = worksheets("info").range("G2") with activecell .numberformat = "mm/dd/yyyy" .value = dateserial(year(mycell.value), month(mycell.value), 1) end with wrote: I'm trying to do something very simple in Visual Basic, but am having trouble. All I want to do is put a date in a certain cell, based on a date in a different cell on a different sheet. The formula I would use if it weren't visual basic is: =DATE(Year(Info!G2),Month(Info!G2),1) How can I do this using visual basic? Thanks! Brett -- Dave Peterson |
All times are GMT +1. The time now is 06:59 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com