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