M Mark Kubicki Oct 6, 2003 #1 need to convert today's date (10/06/03) into the text format "100603" i give up, how do ya do it? thanks in advance mark
need to convert today's date (10/06/03) into the text format "100603" i give up, how do ya do it? thanks in advance mark
N Neil Oct 6, 2003 #3 Mark, Try this. Sub ChangeMe() ActiveSheet.Range("B1").Value = Format(ActiveSheet.Range("a1").Value, "mmddyy") End Sub
Mark, Try this. Sub ChangeMe() ActiveSheet.Range("B1").Value = Format(ActiveSheet.Range("a1").Value, "mmddyy") End Sub
N Neil Oct 6, 2003 #4 Mark, Watch the line wrap Neil Neil said: Mark, Try this. Sub ChangeMe() ActiveSheet.Range("B1").Value = Format(ActiveSheet.Range("a1").Value, "mmddyy") End Sub Click to expand...
Mark, Watch the line wrap Neil Neil said: Mark, Try this. Sub ChangeMe() ActiveSheet.Range("B1").Value = Format(ActiveSheet.Range("a1").Value, "mmddyy") End Sub Click to expand...