Try:
Option Explicit
Sub Macro1()
'
' Macro1 Macro
'
Dim lLR As Long, rStart As Range
' assume column requiring formulae is selected
Set rStart = ActiveCell
' check that we're in an acceptable column
If rStart.Column < 3 Then Exit Sub
Application.ScreenUpdating = False
' determine how many rows of data
lLR = Cells(Rows.Count, rStart.Column - 2).End(xlUp).Row
' put formula in cells and format as percentage
With Range(Cells(2, rStart.Column), Cells(lLR, rStart.Column))
.FormulaR1C1 = _
"=IF(AND(RC[-2]<>"""",RC[-1]<>""""),RC[-1]/RC[-2],"""")"
.NumberFormat = "0%"
End With
Application.ScreenUpdating = True
End Sub
Bookmarks