More Excel Answers
Question Library
Ask a question about Excel
Volunteer
Experts of the Month
Expert Login
Awards
About Us
Tell friends
Link to Us
Disclaimer
|
| |
|
|
| |
| | | |
About Victor Lan
Expertise I use Excel at work and can assist you in manipulating and filtering data, creating and using formulas, pivot tables, and writing VBA to solve problems and automate processes. I'm willing to research and find a solution for almost anything in Excel for you.
Experience 3 years of professional Excel experience. I currently work for a global investment bank and our team is responsible for certifying the daily profit and loss of the trading desk. Excel is one of the primary tools used at work.
Organizations Member of Toastmasters International.
Education/Credentials BSc Banking and Finance (First Class Honours), University of London.
Diploma in Electronics, Computer and Communication Engineering, Singapore Polytechnic.
| | |
| |
You are here: Experts > Computing/Technology > Microsoft Software > Excel > Use Excel Shrotcuts in VBA
Excel - Use Excel Shrotcuts in VBA
Expert: Victor Lan - 11/9/2009
Question Hello,
I want to use the excel shortcuts such as Ctrl + C, Ctrl + V, Ctrl + A etc...anything in my VBA code, Is that possible?
Regards
Machhu
Answer Hi Machhu,
Do you mean what you want to copy, cut and paste data using Excel VBA?
If so, you can certainly do them.
It can be as simple as the following VBA code.
Range("A1").Copy Range("B1")
Range("B1").Cut Range("C1")
Cheers.
Regards,
Victor LAN
Add to this Answer Ask a Question
|
|