Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Delete Rows containing pop-up entry

Thanks much Ron..........unfortunately I have to work with Excel97 here.
But, I've downloaded your Add-in and will put it to good use at home.

Thanks again,
Vaya con Dios,
Chuck, CABGx3



"Ron de Bruin" wrote:

For a Add-in solution see
http://www.rondebruin.nl/easyfilter.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks ever so much Guys....Paul B, Jason, and JE.......all three worked
fine-fine-superfine. I think I will go with Jason's tho, because it seems
to
work with either numbers or case-senitive text.

Thanks again for the rapid and working responses......any one of which
would
have served me, but it's always nice having a choice.

Vaya con Dios,
Chuck, CABGx3


"CLR" wrote:

Hi All......

I got this from a search of this group, and it works fine.

Hi Lawlerd, this code was posted by Frank Kabel, it should do what you
you need, it will delete every row with the word 'total' in column A...

Sub delete_rows()
Dim RowNdx As Long
Dim LastRow As Long
LastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).row
For RowNdx = LastRow To 1 Step -1
If Cells(RowNdx, "A").Value = "total" Then
Rows(RowNdx).Delete
End If
Next RowNdx
End Sub

My question is, can it be modified to give me a pop-up requesting a value
to
search for and delete the rows containing it, instead of a hard-coded
"total"?

Many TIA's
Vaya con Dios,
Chuck, CABGx3





  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Delete Rows containing pop-up entry

Hi

unfortunately I have to work with Excel97


After I have finish the new version with a Date tab for filtering on
months ,Year, week numbers, weekdays, ................
I will see if I can fix the problems in Excel 97.

--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks much Ron..........unfortunately I have to work with Excel97 here.
But, I've downloaded your Add-in and will put it to good use at home.

Thanks again,
Vaya con Dios,
Chuck, CABGx3



"Ron de Bruin" wrote:

For a Add-in solution see
http://www.rondebruin.nl/easyfilter.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks ever so much Guys....Paul B, Jason, and JE.......all three
worked
fine-fine-superfine. I think I will go with Jason's tho, because it
seems
to
work with either numbers or case-senitive text.

Thanks again for the rapid and working responses......any one of which
would
have served me, but it's always nice having a choice.

Vaya con Dios,
Chuck, CABGx3


"CLR" wrote:

Hi All......

I got this from a search of this group, and it works fine.

Hi Lawlerd, this code was posted by Frank Kabel, it should do what
you
you need, it will delete every row with the word 'total' in column
A...

Sub delete_rows()
Dim RowNdx As Long
Dim LastRow As Long
LastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).row
For RowNdx = LastRow To 1 Step -1
If Cells(RowNdx, "A").Value = "total" Then
Rows(RowNdx).Delete
End If
Next RowNdx
End Sub

My question is, can it be modified to give me a pop-up requesting a
value
to
search for and delete the rows containing it, instead of a hard-coded
"total"?

Many TIA's
Vaya con Dios,
Chuck, CABGx3







  #3   Report Post  
Posted to microsoft.public.excel.programming
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Delete Rows containing pop-up entry

cool........thanks

Vaya con Dios,
Chuck, CABGx3



"Ron de Bruin" wrote:

Hi

unfortunately I have to work with Excel97


After I have finish the new version with a Date tab for filtering on
months ,Year, week numbers, weekdays, ................
I will see if I can fix the problems in Excel 97.

--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks much Ron..........unfortunately I have to work with Excel97 here.
But, I've downloaded your Add-in and will put it to good use at home.

Thanks again,
Vaya con Dios,
Chuck, CABGx3



"Ron de Bruin" wrote:

For a Add-in solution see
http://www.rondebruin.nl/easyfilter.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks ever so much Guys....Paul B, Jason, and JE.......all three
worked
fine-fine-superfine. I think I will go with Jason's tho, because it
seems
to
work with either numbers or case-senitive text.

Thanks again for the rapid and working responses......any one of which
would
have served me, but it's always nice having a choice.

Vaya con Dios,
Chuck, CABGx3


"CLR" wrote:

Hi All......

I got this from a search of this group, and it works fine.

Hi Lawlerd, this code was posted by Frank Kabel, it should do what
you
you need, it will delete every row with the word 'total' in column
A...

Sub delete_rows()
Dim RowNdx As Long
Dim LastRow As Long
LastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).row
For RowNdx = LastRow To 1 Step -1
If Cells(RowNdx, "A").Value = "total" Then
Rows(RowNdx).Delete
End If
Next RowNdx
End Sub

My question is, can it be modified to give me a pop-up requesting a
value
to
search for and delete the rows containing it, instead of a hard-coded
"total"?

Many TIA's
Vaya con Dios,
Chuck, CABGx3








  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Delete Rows containing pop-up entry

I will see if I can fix the problems in Excel 97.

That would be great Ron, but most users would probably be happy if you could
just get your Addin to work with Excel 97 with its current problems. <G

--
Regards,
Tom Ogilvy





"Ron de Bruin" wrote in message
...
Hi

unfortunately I have to work with Excel97


After I have finish the new version with a Date tab for filtering on
months ,Year, week numbers, weekdays, ................
I will see if I can fix the problems in Excel 97.

--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks much Ron..........unfortunately I have to work with Excel97 here.
But, I've downloaded your Add-in and will put it to good use at home.

Thanks again,
Vaya con Dios,
Chuck, CABGx3



"Ron de Bruin" wrote:

For a Add-in solution see
http://www.rondebruin.nl/easyfilter.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks ever so much Guys....Paul B, Jason, and JE.......all three
worked
fine-fine-superfine. I think I will go with Jason's tho, because it
seems
to
work with either numbers or case-senitive text.

Thanks again for the rapid and working responses......any one of

which
would
have served me, but it's always nice having a choice.

Vaya con Dios,
Chuck, CABGx3


"CLR" wrote:

Hi All......

I got this from a search of this group, and it works fine.

Hi Lawlerd, this code was posted by Frank Kabel, it should do what
you
you need, it will delete every row with the word 'total' in column
A...

Sub delete_rows()
Dim RowNdx As Long
Dim LastRow As Long
LastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).row
For RowNdx = LastRow To 1 Step -1
If Cells(RowNdx, "A").Value = "total" Then
Rows(RowNdx).Delete
End If
Next RowNdx
End Sub

My question is, can it be modified to give me a pop-up requesting a
value
to
search for and delete the rows containing it, instead of a

hard-coded
"total"?

Many TIA's
Vaya con Dios,
Chuck, CABGx3









  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Delete Rows containing pop-up entry

Hi Tom

I hope to have the Beta 2.0 version ready this week with the Date tab.
After that I will try to fix the 97 problem.
Maybe i need some help from a Excel 97 expert named Tom<vbg



--
Regards Ron de Bruin
http://www.rondebruin.nl



"Tom Ogilvy" wrote in message
...
I will see if I can fix the problems in Excel 97.


That would be great Ron, but most users would probably be happy if you
could
just get your Addin to work with Excel 97 with its current problems. <G

--
Regards,
Tom Ogilvy





"Ron de Bruin" wrote in message
...
Hi

unfortunately I have to work with Excel97


After I have finish the new version with a Date tab for filtering on
months ,Year, week numbers, weekdays, ................
I will see if I can fix the problems in Excel 97.

--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks much Ron..........unfortunately I have to work with Excel97
here.
But, I've downloaded your Add-in and will put it to good use at home.

Thanks again,
Vaya con Dios,
Chuck, CABGx3



"Ron de Bruin" wrote:

For a Add-in solution see
http://www.rondebruin.nl/easyfilter.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks ever so much Guys....Paul B, Jason, and JE.......all three
worked
fine-fine-superfine. I think I will go with Jason's tho, because it
seems
to
work with either numbers or case-senitive text.

Thanks again for the rapid and working responses......any one of

which
would
have served me, but it's always nice having a choice.

Vaya con Dios,
Chuck, CABGx3


"CLR" wrote:

Hi All......

I got this from a search of this group, and it works fine.

Hi Lawlerd, this code was posted by Frank Kabel, it should do what
you
you need, it will delete every row with the word 'total' in column
A...

Sub delete_rows()
Dim RowNdx As Long
Dim LastRow As Long
LastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).row
For RowNdx = LastRow To 1 Step -1
If Cells(RowNdx, "A").Value = "total" Then
Rows(RowNdx).Delete
End If
Next RowNdx
End Sub

My question is, can it be modified to give me a pop-up requesting a
value
to
search for and delete the rows containing it, instead of a

hard-coded
"total"?

Many TIA's
Vaya con Dios,
Chuck, CABGx3













  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Delete Rows containing pop-up entry

I might be able to lend a hand.

--
Regards,
Tom Ogilvy

"Ron de Bruin" wrote in message
...
Hi Tom

I hope to have the Beta 2.0 version ready this week with the Date tab.
After that I will try to fix the 97 problem.
Maybe i need some help from a Excel 97 expert named Tom<vbg



--
Regards Ron de Bruin
http://www.rondebruin.nl



"Tom Ogilvy" wrote in message
...
I will see if I can fix the problems in Excel 97.


That would be great Ron, but most users would probably be happy if you
could
just get your Addin to work with Excel 97 with its current problems. <G

--
Regards,
Tom Ogilvy





"Ron de Bruin" wrote in message
...
Hi

unfortunately I have to work with Excel97

After I have finish the new version with a Date tab for filtering on
months ,Year, week numbers, weekdays, ................
I will see if I can fix the problems in Excel 97.

--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks much Ron..........unfortunately I have to work with Excel97
here.
But, I've downloaded your Add-in and will put it to good use at home.

Thanks again,
Vaya con Dios,
Chuck, CABGx3



"Ron de Bruin" wrote:

For a Add-in solution see
http://www.rondebruin.nl/easyfilter.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks ever so much Guys....Paul B, Jason, and JE.......all three
worked
fine-fine-superfine. I think I will go with Jason's tho, because

it
seems
to
work with either numbers or case-senitive text.

Thanks again for the rapid and working responses......any one of

which
would
have served me, but it's always nice having a choice.

Vaya con Dios,
Chuck, CABGx3


"CLR" wrote:

Hi All......

I got this from a search of this group, and it works fine.

Hi Lawlerd, this code was posted by Frank Kabel, it should do

what
you
you need, it will delete every row with the word 'total' in

column
A...

Sub delete_rows()
Dim RowNdx As Long
Dim LastRow As Long
LastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).row
For RowNdx = LastRow To 1 Step -1
If Cells(RowNdx, "A").Value = "total" Then
Rows(RowNdx).Delete
End If
Next RowNdx
End Sub

My question is, can it be modified to give me a pop-up requesting

a
value
to
search for and delete the rows containing it, instead of a

hard-coded
"total"?

Many TIA's
Vaya con Dios,
Chuck, CABGx3













  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Delete Rows containing pop-up entry

Thanks Tom

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Tom Ogilvy" wrote in message
...
I might be able to lend a hand.

--
Regards,
Tom Ogilvy

"Ron de Bruin" wrote in message
...
Hi Tom

I hope to have the Beta 2.0 version ready this week with the Date tab.
After that I will try to fix the 97 problem.
Maybe i need some help from a Excel 97 expert named Tom<vbg



--
Regards Ron de Bruin
http://www.rondebruin.nl



"Tom Ogilvy" wrote in message
...
I will see if I can fix the problems in Excel 97.

That would be great Ron, but most users would probably be happy if you
could
just get your Addin to work with Excel 97 with its current problems.
<G

--
Regards,
Tom Ogilvy





"Ron de Bruin" wrote in message
...
Hi

unfortunately I have to work with Excel97

After I have finish the new version with a Date tab for filtering on
months ,Year, week numbers, weekdays, ................
I will see if I can fix the problems in Excel 97.

--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks much Ron..........unfortunately I have to work with Excel97
here.
But, I've downloaded your Add-in and will put it to good use at
home.

Thanks again,
Vaya con Dios,
Chuck, CABGx3



"Ron de Bruin" wrote:

For a Add-in solution see
http://www.rondebruin.nl/easyfilter.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"CLR" wrote in message
...
Thanks ever so much Guys....Paul B, Jason, and JE.......all three
worked
fine-fine-superfine. I think I will go with Jason's tho, because

it
seems
to
work with either numbers or case-senitive text.

Thanks again for the rapid and working responses......any one of
which
would
have served me, but it's always nice having a choice.

Vaya con Dios,
Chuck, CABGx3


"CLR" wrote:

Hi All......

I got this from a search of this group, and it works fine.

Hi Lawlerd, this code was posted by Frank Kabel, it should do

what
you
you need, it will delete every row with the word 'total' in

column
A...

Sub delete_rows()
Dim RowNdx As Long
Dim LastRow As Long
LastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).row
For RowNdx = LastRow To 1 Step -1
If Cells(RowNdx, "A").Value = "total" Then
Rows(RowNdx).Delete
End If
Next RowNdx
End Sub

My question is, can it be modified to give me a pop-up
requesting

a
value
to
search for and delete the rows containing it, instead of a
hard-coded
"total"?

Many TIA's
Vaya con Dios,
Chuck, CABGx3















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
Excel Autocomplete entry - Delete - How? Joe727 New Users to Excel 7 December 13th 09 08:35 PM
How to delete an repeatitive entry from a worksheet Martha Excel Worksheet Functions 2 January 15th 08 06:57 PM
How to delete rows when List toolbar's "delete" isnt highlighted? Linda Excel Worksheet Functions 1 May 26th 05 08:39 PM
Delete every 3rd row, then delete rows 2-7, move info f/every 2nd row up one to the end and delete the row below Annette[_4_] Excel Programming 2 September 21st 04 02:40 PM
delete dublicate entry. shital Excel Programming 1 September 26th 03 04:55 AM


All times are GMT +1. The time now is 05:39 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"