merhaba arkadaşlar aşağıdaki kodu öğrenci notu 49 dan küçükse notun yanına boşluk bırakıp "-" işareti eklesin 49 dan büyükse + eklemesini istiyorum.
For i = 5 To 18
If Worksheets("sayfa4").Cells(i, 16) > 49 Then
Cells(i, 16).Interior.ColorIndex = 2
Else
Cells(i, 16).Interior.ColorIndex = 3
End If
Next i
For i = 5 To 18
If Worksheets("sayfa4").Cells(i, 16) > 49 Then
Cells(i, 16).Interior.ColorIndex = 2
Else
Cells(i, 16).Interior.ColorIndex = 3
End If
Next i
