Sub blah()
With Selection.Interior
.Pattern = xlPatternLinearGradient
With .Gradient
.Degree = 45
.ColorStops.Clear
.ColorStops.Add (0)
.ColorStops.Add (0.49)
With .ColorStops.Add(0.51)
.Color = vbYellow
End With
With .ColorStops.Add(1)
.Color = vbYellow
End With
End With
End With
Selection.Borders(xlDiagonalUp).LineStyle = xlContinuous
End Sub
No.Is there any other options without code