For Loops

PHOTO EMBED

Sun Nov 14 2021 13:14:05 GMT+0000 (Coordinated Universal Time)

Saved by @IsabellaLM #vba

Dim i As Integer

For i = 3 To 26
If Cells(i, 2) >= 0.5 Then
Cells(i, 3).Value = "Upper"
Cells(i, 3).Font.Bold = True
End If
Next i

End Sub

Sub cumulate()

Dim i As Integer

Range("D3").Value = Range("B3").Value

For i = 4 To 26
Cells(i, 4) = Cells(i - 1, 4) + Cells(i, 2)
Next i

End Sub
content_copyCOPY