Hi Joshua,
Try:
'=============>>
Public Sub SheetCopyValues()
Dim WB As Workbook
Dim SH As Worksheet
Set WB = ActiveWorkbook
For Each SH In WB.Worksheets
With SH.UsedRange
.Value = .Value
End With
Next SH
End Sub
'<<=============
---
Regards,
Norman
> guys:
>
[quoted text clipped - 24 lines]
> Application.ScreenUpdating = True
> End Sub
cass calculator - 31 May 2007 23:36 GMT
On May 31, 6:08 pm, "Norman Jones" <normanjo...@whereforartthou.com>
wrote:
> Hi Joshua,
>
[quoted text clipped - 47 lines]
> > Application.ScreenUpdating = True
> > End Sub
Alas, that is much smarter. Thank you !