I figured out the white part...
Or at least it's working. Probably not the most elegant way to do it.
Since there will never be any other numbers in the column that are less than 1...
Sub BuildSeq()
Dim rng As Range
Set rng = [G1]
rng.Value = 0.01
Set rng = Range(rng, rng.End(xlDown).Offset(rowOffset:=-1))
rng.DataSeries Type:=xlLinear, Step:=0.01
Columns("G:G").Select
Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlLess, _
Formula1:="=1"
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Font
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = False
End Sub
Bookmarks