Highlight the three cells you want to move down and right mouse click. On the sub menu that displays select Insert. In the dialog box that displays select Move Cells Down.
Main Topics
Browse All TopicsHello all.
I have an excel spreadsheet with 3 columns of information. I have another column with hyperlinks that execute macros. Is it possible to select an area inside the Information cell range that I want to insert a row and push the 3 cells of information down a cell?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
If you want to insert a link in A5, then your code will look something similar to this...
Range("A5").select
Selection.Insert Shift:=xlDown
ActiveSheet.Hyperlinks.Add
"http://www.yahoo.com", TextToDisplay:="LINK"
This will shift only the values in Column A down and insert a link in A5.
- Ardhendu
Business Accounts
Answer for Membership
by: pari123Posted on 2009-05-04 at 13:44:08ID: 24299027
>>> Is it possible to select an area inside the Information cell range that I want to insert a row and push the 3 cells of information down a cell?
Anchor:=Selection, Address:= _
Yes, it is absolutely possible and there are also many ways to get this done. Here's one way that you can try:
After you select the desired cells you can use something similar.
Range("A2:C2".select
Selection.Insert Shift:=xlDown
This will move the cells down. To add a hyperlink you can use something like this:
Range("A1").Select
ActiveSheet.Hyperlinks.Add
"http://www.yahoo.com", TextToDisplay:="LINK"
- Ardhendu