I'm using VBA in Excel to enter a formula in a specific cell within a table, but don't want the entire column to get this formula.
When doing it manually, Excel gives me the option to 'Undo Calculated Column', but not when it's done through code.
My code is as follows:
Dim url As String
url="https://example.com/myurl"
ThisWorkbook.Worksheets("PO Info").Range("E3").FormulaR1C1 = "=Hyperlink(""" & url & """,""Supplier Portal"")"
Any help would be greatly appreciated.