アメリカの大学生活---日記

ミネソタ州立大学ムーアヘッド校 会計学部を5月に卒業して帰国し、税務の仕事してます。

練習問題9(文字色・背景色の練習) メモ

excel-ubara.com

Sub Practice9()
  Dim i As Long
  For i = 2 To Cells(Rows.Count, 1).End(xlUp).Row
   Cells(i, 4) = Cells(i, 3) / Cells(i, 2)
     Select Case Cells(i, 4)
       Case Is >= 1.05
         Cells(i, 4).Interior.Color = vbBlue
         Cells(i, 4).Font.Color = vbWhite
      Case Is >= 1
        Cells(i, 4).Font.Color = vbBlue
     Case Is >= 0.95
       Cells(i, 4).Font.Color = vbBlack
    Case Is >= 0.9
      Cells(i, 4).Font.Color = vbRed
   Case Else
     Cells(i, 4).Interior.Color = vbRed
    Cells(i, 4).Font.Color = vbBlack
  End Select
 Next
End Sub