For R = 1 To 10
a = IIf(R = 10, -1, 0)
Set rg = Cells(7 * R + a, 2).Resize(1, 49)
rg.Font.ColorIndex = 1: rg.Font.Size = 12: rg.Font.Bold = False '«ì´_¦rÅé®æ¦¡
max = WorksheetFunction.max(rg)
For Each cel In rg
If cel = max Then cel.Font.ColorIndex = 3: cel.Font.Bold = True
Next
Next