And if you want it done in the cell as you enter the number without a helper
cell.
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column > 8 Then Exit Sub
On Error GoTo ErrHandler
Application.EnableEvents = False
Target.Formula = Application.WorksheetFunction.Roman(Target.Formula)
ErrHandler:
Application.EnableEvents = True
End Sub