Removing formulas and Links from a sheet to leave values onl

rmtaylor

Board Regular
Joined
Feb 17, 2002
Messages
155
Hi
I am new to (and struggling with) VBA
I have a complicated sheet I would like to email on that has lots of results, formulas and links to other sheets
I would appreciate any help on obtaining a code to remove formulas and links from my sheet leaving the values only.

Thanks in advance
Robert
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
I have used this code made up by running a macro then attemting to edit it. I am unsure of the statment
Range("AB12").Select
part as if I copy the code to new sheets it may not instigate the required actions
IE select from A1 to AV2000 copy paste values only.
Still struggling
Robert



Sub valuesonly()
'
' valuesonly


'
Range("A1:AV2000").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Range("AB12").Select
Application.CutCopyMode = False
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,687
Members
449,117
Latest member
Aaagu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top