是否可以在运行时的列级别设置日期格式,比如#9
我需要将日期格式设置为的列[h]:mm:ss
?我将在将数组转置到该列之前设置格式。
编辑
Sub Macro1()
'
' Macro1 Macro
'
'
Range("D1").Select
Selection.Font.Bold = True
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 65535
.TintAndShade = 0
.PatternTintAndShade = 0
End With
With Selection.Font
.Color = -16776961
.TintAndShade = 0
End With
End Sub
谢谢