View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Copy Paste Special Values Workbook

Easiest? One way (assuming no array formulae):

Dim ws As Worksheet

For Each ws In ActiveWorkbook.Worksheets
With ws.UsedRange
.Value = .Value
End With
Next ws


In article ,
PJFry wrote:

What is the easiest way to copy and paste special values an entire workbook?