Sub
Relativna_u_apsolutnu()
Dim Zamjena
For Each Zamjena
In ActiveSheet.Cells.SpecialCells(xlCellTypeFormulas, 23)
Zamjena.Formula = Application.ConvertFormula(Formula:=Zamjena.Formula,
FromReferenceStyle:=xlA1, ToAbsolute:=xlAbsolute)
Next
End Sub
Sub
Apsolutna_u_relativnu()
Dim Zamjena
For Each Zamjena
In ActiveSheet.Cells.SpecialCells(xlCellTypeFormulas, 23)
Zamjena.Formula = Application.ConvertFormula(Formula:=Zamjena.Formula,
FromReferenceStyle:=xlA1, ToAbsolute:=xlRelative)
Next
End Sub