Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 252
Default How to Insert Rows but not Ripple up others

Hi all,

From A100 to A200, I need to insert rows , but I do not want to push other
rows below A200 down. I know code can do it, but is there a hack here?

Clara

thank you so much for your help
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 178
Default How to Insert Rows but not Ripple up others

Sorry, you just missed them.
All the HACKS went to www.HacksRUs.com

--
Gary Brown



"clara" wrote:

Hi all,

From A100 to A200, I need to insert rows , but I do not want to push other
rows below A200 down. I know code can do it, but is there a hack here?

Clara

thank you so much for your help

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default How to Insert Rows but not Ripple up others

Hi Clara..

'-----------------
From A100 to A200, I need to insert rows , but I do not want to push other
rows below A200 down. I know code can do it, but is there a hack here?
'-----------------

I regret that I do not understand what you wish to do.

If, for example, you insert a row before row 200, will
row (say) 201 not automatically become row 202?


---
Regards,
Norman


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 324
Default How to Insert Rows but not Ripple up others

If you want to clear the cells with code -
Sub Clear_The_Cells()
Range("A100:A200").Select
Selection.ClearContents
End Sub
--
Best wishes,

Jim


"clara" wrote:

Hi all,

From A100 to A200, I need to insert rows , but I do not want to push other
rows below A200 down. I know code can do it, but is there a hack here?

Clara

thank you so much for your help



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 252
Default How to Insert Rows but not Ripple up others

Hi Norman,

What I reallly want to do is to copy a range , for example A200:A300, to a
range, for example B100:B200 without using range's "Select" method.

Clara
--
thank you so much for your help


"Norman Jones" wrote:

Hi Clara..

'-----------------
From A100 to A200, I need to insert rows , but I do not want to push other
rows below A200 down. I know code can do it, but is there a hack here?
'-----------------

I regret that I do not understand what you wish to do.

If, for example, you insert a row before row 200, will
row (say) 201 not automatically become row 202?


---
Regards,
Norman



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default How to Insert Rows but not Ripple up others

Hi Clara,

Try:

Range("B100::B200").Value = Range("A200::A300").Value

or

Range("A200::A300").Copy Destination:= Range("B100::B200").


---
Regards,
Norman




"clara" wrote in message
...
Hi Norman,

What I reallly want to do is to copy a range , for example A200:A300, to
a
range, for example B100:B200 without using range's "Select" method.

Clara
--
thank you so much for your help


"Norman Jones" wrote:

Hi Clara..

'-----------------
From A100 to A200, I need to insert rows , but I do not want to push
other
rows below A200 down. I know code can do it, but is there a hack here?
'-----------------

I regret that I do not understand what you wish to do.

If, for example, you insert a row before row 200, will
row (say) 201 not automatically become row 202?


---
Regards,
Norman





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do i insert blank rows between data that is thousands of rows paul.eatwell Excel Discussion (Misc queries) 5 April 14th 08 10:49 PM
Insert rows: Formats & formulas extended to additonal rows Twishlist Excel Worksheet Functions 0 October 22nd 07 04:23 AM
Insert page breaks every 50 rows but do not include hidden rows Martin[_21_] Excel Programming 5 March 12th 07 05:10 PM
How do i insert of spacer rows between rows in large spreadsheets laurel Excel Discussion (Misc queries) 0 April 24th 06 01:38 PM
Copy Rows and insert these rows before a page break AQ Mahomed Excel Programming 0 June 8th 04 09:09 AM


All times are GMT +1. The time now is 10:51 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"