Out of curiosity, why do you need to do this?
Tyro
> Hi
>
[quoted text clipped - 4 lines]
>
> Brian
Dim sh As Worksheet
Dim cell As Range
For Each sh In ActiveWorkbook.Worksheets
For Each cell In sh.UsedRange
If cell.HasFormula Then
cell.Formula = Application.ConvertFormula( _
cell.Formula, toabsolute:=xlAbsolute)
End If
Next cell
Next sh

Signature
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
> Hi
>
[quoted text clipped - 4 lines]
>
> Brian