jclegg42002
New Member
- Joined
- Sep 6, 2014
- Messages
- 12
- Office Version
- 365
- Platform
- Windows
TO: All the Smart People
I know I have done this before years ago, but I have to copy data from multiple sources from intranet websites and then paste (as values) onto multiple spreadsheets. I have a button on my mouse mapped to CTRL-C and another button to CTRL-V. It is about as worthless as a screen door in a sub-marine when it comes to trying to keep my spreadsheet clean and need to simply 'Paste Values' into a cell. I have searched up and down through the internet and multiple BB sites and everyone has a some weird and unique request(s) for certain ranges, or 'copy to this sheet', or a file on another server, etc. I cannot find any decent leads that allow me to paste any formatting text I may have copied to 'any' sheet in my workbook. I want to remove external formatting outside of excel altogether to be honest. I have seen code like the following, but it was dependent on a range or a worksheet name, etc. (I really feel like this a simple request and the answer is right in front of my face!)
I do not want to re-assign a key to do this. I want the good ol CTRL-V to paste as 'value' indefinitely. Does anyone know how I might be able to do that? I hope I do not need local admin rights to obtain this request. I work for a high level company and have tried everything in the books to get local admin and have been unsuccessful so far. I am sure someone on this BB can answer my question in 5 seconds flat and I apologize for my stupidity. (it has just been a while since I have coded absolutely anything and my work is kicking my butt so I could definitely use some help)
Thank you ahead of time!!!
I know I have done this before years ago, but I have to copy data from multiple sources from intranet websites and then paste (as values) onto multiple spreadsheets. I have a button on my mouse mapped to CTRL-C and another button to CTRL-V. It is about as worthless as a screen door in a sub-marine when it comes to trying to keep my spreadsheet clean and need to simply 'Paste Values' into a cell. I have searched up and down through the internet and multiple BB sites and everyone has a some weird and unique request(s) for certain ranges, or 'copy to this sheet', or a file on another server, etc. I cannot find any decent leads that allow me to paste any formatting text I may have copied to 'any' sheet in my workbook. I want to remove external formatting outside of excel altogether to be honest. I have seen code like the following, but it was dependent on a range or a worksheet name, etc. (I really feel like this a simple request and the answer is right in front of my face!)
VBA Code:
Sub Excel_Paste_Special_1()
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Paste_Cell.Parent.Activate
Paste_Cell.PasteSpecial xlPasteValuesAndNumberFormats
Paste_Cell.PasteSpecial xlPasteFormats
Application.CutCopyMode = False
End Sub
I do not want to re-assign a key to do this. I want the good ol CTRL-V to paste as 'value' indefinitely. Does anyone know how I might be able to do that? I hope I do not need local admin rights to obtain this request. I work for a high level company and have tried everything in the books to get local admin and have been unsuccessful so far. I am sure someone on this BB can answer my question in 5 seconds flat and I apologize for my stupidity. (it has just been a while since I have coded absolutely anything and my work is kicking my butt so I could definitely use some help)
Thank you ahead of time!!!