VBABEGINER

Well-known Member
Joined
Jun 15, 2011
Messages
1,232
ANy other way to write this code..
Code:
ActiveWorkbook.Sheets("Sur").Columns("R:R").Select
Selection.Insert Shift:=xlToRight
Columns("S:S").Select
Selection.Copy
Columns("R:R").Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
 
Last edited:
Both salient points, @ParamRay. Perhaps the shortest way to handle the original request with your points would be to modify Rick's code as follows:

Code:
    Sheets("Sur").Columns("S").Insert
    Sheets("Sur").Columns("R").Copy Sheets("Sur").Range("S1")
My original snippet still had a Select in it. Since VBABEGINER's original code also required that the Sur sheet be selected, I didn't see a problem with my code also requiring that, but I did think it would be beneficial to explicitly comment on it. I could have spent more time finding a way to remove the Select from my code, but I had time constraints, and since my snippet was already 4 lines shorter than the original, I felt it worthwhile to post.

It makes me think we're stuck in our ways! it's about time that VBA got acquainted with the modern world, and we get an explicit, strictly typed language, as well as a better object model in Excel, in order to be forced into better coding... (Rant over.) :)

... Not to mention, also a 21st century IDE!!
 
Last edited:
Upvote 0

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Again, all good points! :)

From what I've read, the Excel developers really like VBA, so I don't see it going away anytime soon. But there may be cause for hope, if you're a Python fan. On the request site, the number one request is for Python integration:

https://excel.uservoice.com/forums/...0549005-python-as-an-excel-scripting-language

No promises from Microsoft, except that they'll consider it. And a better IDE would be nice too, but again, they're constrained by millions of current users loath to learn something new.
 
Upvote 0
Again, all good points! :)

From what I've read, the Excel developers really like VBA, so I don't see it going away anytime soon. But there may be cause for hope, if you're a Python fan. On the request site, the number one request is for Python integration:

https://excel.uservoice.com/forums/...0549005-python-as-an-excel-scripting-language

No promises from Microsoft, except that they'll consider it. And a better IDE would be nice too, but again, they're constrained by millions of current users loath to learn something new.

Woah, tonnes of votes on that, thanks for sharing.

If they do feel constrained to VBA, at least a better IDE, and a richer set of events to handle would be a step in the right direction. It would be nice to have events for a range, a shape, an autofilter, etc. Also, some built-in wrappers for .NET classes would be handy, and introduction of generics could discourage all the dynamic typing with Variant.
 
Upvote 0

Forum statistics

Threads
1,215,334
Messages
6,124,323
Members
449,154
Latest member
pollardxlsm

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