Would someone be able to put this into VBA code?
I've tried but can't work out how to do it.
Cell ranges N2:N1000 & E2:E1000
Condition 1: =N2="m" [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 10 Cell.Font.Bold = True]
Condition 2: =OR(N2="vg",N2="g") [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 14 Cell.Font.Bold = True]
Condition 3: =N2="n" [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 9 Cell.Font.Bold = True]
Condition 4: =IF(E2="x",N2="") [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 3 Cell.Font.Bold = True]
If Cell.Value <> to any of the criteria then [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 0]
thanks
I've tried but can't work out how to do it.
Cell ranges N2:N1000 & E2:E1000
Condition 1: =N2="m" [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 10 Cell.Font.Bold = True]
Condition 2: =OR(N2="vg",N2="g") [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 14 Cell.Font.Bold = True]
Condition 3: =N2="n" [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 9 Cell.Font.Bold = True]
Condition 4: =IF(E2="x",N2="") [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 3 Cell.Font.Bold = True]
If Cell.Value <> to any of the criteria then [Cell.Font.ColorIndex = 0 Cell.Interior.ColorIndex = 0]
thanks