Query

jyoti.vichare

New Member
Joined
Apr 11, 2011
Messages
3
Hi
I have one query, after i copy paste the excel sheet the sheet which i have copied it contains formula after i paste it somewhere else it shoudn't show the formulas in pasted sheet only viewer can see the values how to do this? please do the needful
Regards
Jyoti
 
Last edited:

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Copy the range, select the destination range, Edit > Paste Special, tick Values and click OK.
 
Upvote 0
Select all of your copied sheet, copy it then Edit > Paste Special > Values.
 
Upvote 0
I want to copy the whole sheet as it is and when i paste it , it shouldn't show the formula like what i was thinking if i do it using macro and put RUN button after clicking on run button it should run the formulas in pasted sheet . using macro will it be possible?

Thanks
 
Upvote 0
Try this with your copied sheet selected.

Code:
Sub NoFormulas()
With ActiveSheet.UsedRange
    .Value = .Value
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,614
Messages
6,179,906
Members
452,949
Latest member
beartooth91

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