Range("K4") = FormatPercent(Range("K2") / Range("K3"))
Range("L4") = FormatPercent(Range("L2") / Range("L3"))
Range("M4") = FormatPercent(Range("M2") / Range("M3"))
Range("N4") = FormatPercent(Range("N2") / Range("N3"))
I was able to get this to print what I wanted but I'm sure there is a simpler way
I tried Range("K4:N4") = FormatPercent(Range("K2:N2") / Range("K3:N3")) but it gave me an error. I'm still new to VBA and was looking for advice. Maybe something with a For loop would work better.