Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel Copy Workbook Converting Formula to Values

Status
Not open for further replies.

StellaIndigo

IS-IT--Management
Sep 19, 2002
118
GB
Hi

I have a problem where my admin staff have a large number of Excel workbooks that have links to external data sources. They need to send the workbooks to mobile users so the formula and external links need to be converted to values so they can read.

My thought is to copy the workbook and then Copy - Paste Special - values and formats all the data in every sheet over the top of its self. Then send the copy. (copy and paste set up as a macro).

Anyone got any better ideas or am I missing something with an Excel feature?

Regards

Stella

Regards
Stella

There are 10 types of people in the world. Those that understand binary and those that don't.
 
Hi,

Sounds good
Code:
    Dim ws As Worksheet
    For Each ws In Worksheets
      With ws
        .Cells.Copy
        .[A1].PasteSpecial xlValues
      End With
    Next


Skip,

[glasses] [red]Be advised:[/red] The dyslexic, agnostic, insomniac, lays awake all night wondering...
"Is there really a DOG?" [tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top