If (Year(n) - Year(d) >= 1) Then
MsgBox "Latest Fiscal Year Data is" & dd & "Days," & md & "Months," & yd & "Years Old"
Sheets("" & Filename).Cells(5, y2).Font.Italic = True
Sheets("" & Filename).Cells(5, y2).Font.Color = RGB(0, 0, 255)
Sheets("" & Filename).Cells(5, y2).Font.Bold = True
Sheets("" & Filename).Cells(5, y2).Font.FontStyle = Arial
End If
文本顏色變成喜歡藍色,但其它命令粗斜體不執行如果功能不工作VBA
如果你手動選擇單元格,並使用帶命令手動更改,會發生什麼? –
ActiveSheet.Cells(7,1)= .Font.Color RGB(0,0,255) ActiveSheet.Cells(7,1).Font.FontStyle = 「粗斜體」 ActiveSheet.Cells(7,1)。 Font.Name =「Arial」 – BData