You can use Find and Replace, but you might need to apply it several
times. Many cell references will be like this in a formula:
=function(A1)
so you can search for "(A" (no quotes) and replace with "($A$" (no
quotes).
Often you have cell references following a comma, like =SUM(A1,C1,E1),
so in a case like this you can search for ",C" and replace with ",$C$".
The second reference in a range will follow a colon, so you can search
for ":A" and replace with ":$A$".
Hope this helps.
Pete
Don Guillett wrote:
> Have a look in vba help index for CONVERTFORMULA
>
> --
> Don Guillett
> SalesAid Software
> (E-Mail Removed)
> "Axel" <(E-Mail Removed)> wrote in message
> news:4907E2CC-084C-4C0D-B965-(E-Mail Removed)...
> >I have many already existing formulas in a sheet, now I'm looking for an
> >easy
> > way to change all these formulas from relative to absolute.