Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 20
Default auto row insert where TRUE in column A

I would like to insert a row only where TRUE appears in column A
Please help.
Thank you


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 20
Default auto row insert where TRUE in column A

no help required. thank you though, i figured this one out on my own...
"Mr BT" wrote in message
news:kHjXj.142755$Cj7.33407@pd7urf2no...
I would like to insert a row only where TRUE appears in column A
Please help.
Thank you



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 130
Default auto row insert where TRUE in column A

Sub rowtst()

'

Range("a1").Select
Do Until ActiveCell = "" ''change this to meet your criteria
If ActiveCell.Value = "True" Then
Selection.Insert Shift:=xlDown
ActiveCell.Offset(2, 0).Activate
Else: ActiveCell.Offset(1, 0).Activate
End If
Loop

End Sub

"Mr BT" wrote:

I would like to insert a row only where TRUE appears in column A
Please help.
Thank you



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
Insert a date that does not update if a condition is true FirstVette52 Excel Worksheet Functions 9 December 30th 08 09:25 PM
A way to auto insert at top of each column with each entry? Channing Excel Discussion (Misc queries) 4 September 9th 06 04:56 AM
insert a drop down list if a certain cell value is true kd Excel Worksheet Functions 6 January 25th 06 06:34 AM
Insert cell/format/text/fontsize and auto insert into header? Unfurltheflag Excel Programming 2 November 3rd 04 05:39 PM
Test if Auto Outline is True Tod Excel Programming 1 September 6th 03 03:10 AM


All times are GMT +1. The time now is 09:44 PM.

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"