Cut Copy Paste Option
Closed
smuneeb
Posts
67
Registration date
Saturday September 5, 2015
Status
Member
Last seen
March 8, 2017
-
Nov 8, 2015 at 07:30 AM
smuneeb Posts 67 Registration date Saturday September 5, 2015 Status Member Last seen March 8, 2017 - Nov 9, 2015 at 04:37 PM
smuneeb Posts 67 Registration date Saturday September 5, 2015 Status Member Last seen March 8, 2017 - Nov 9, 2015 at 04:37 PM
Related:
- Cut Copy Paste Option
- Cut pdf download - Download - PDF
- Option key in keyboard - Keyboard Forum
- What is light option in whatsapp - Guide
- Short cut key for at the rate - Guide
- Redial option in android - Guide
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Nov 9, 2015 at 09:41 AM
Nov 9, 2015 at 09:41 AM
you can use macro recorder to create a template macro
Nov 9, 2015 at 12:41 PM
Nov 9, 2015 at 12:45 PM
Nov 9, 2015 at 01:21 PM
Sorry if I don't understand your point.
You are saying that How to record the Macro if Yes then for this I recorded the Macro
where it doesn't have a code
Sub PasteAsValues()
'
' PasteAsValues Macro
' Macro will run to pasted as Values
'
'
End Sub
Thanks again and also apologies If I don't understand
Nov 9, 2015 at 04:37 PM
Sub PasteAsValues()
'
' PasteAsValues Macro
' Macro will run to pasted as Values
'
Range("A:A").Select
Selection.Copy
Range("B:B").Select
ActiveSheet.PasteAsValues
Application.CutCopyMode = False
'
End Sub
but what I need if user copy from any workbook sheet where ever he pasted in another workbook sheet always pasted as values.
Thanks