PC Review


Reply
Thread Tools Rate Thread

delete cells with a value of 2

 
 
pgc
Guest
Posts: n/a
 
      13th Oct 2006
Please help i have a sheet like this
A b c
2 fun 1
run 2 100
i want to delete the numer2 in column A and move "run" in column A to
cell A1, same in column B,C etc
i have started a code but it deletes all cells not just the ones with
the number 2 in
heres my code

Sub RemoveCells_ShiftUp()
Application.ScreenUpdating = False
Application.Calculation = xlManual
Dim rw As Long, iCol As Long
For rw = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
If ActiveCell.Value = 2 Then _
Cells(rw, 1).Delete Shift:=xlShiftUp
Next
Application.Calculation = xlAutomatic
Application.ScreenUpdating = True
End Sub
by the way i am not very good with code
Hope someone can help

 
Reply With Quote
 
 
 
 
=?Utf-8?B?S2V2aW4gQg==?=
Guest
Posts: n/a
 
      13th Oct 2006
I believe the following code will do what you want, just adjust the range of
A1:F19 accordingly.

Sub RemoveTwo()

Dim r As Range
Dim l As Long

Set r = Range("A1:F19") 'Your range goes here

For l = 1 To r.Cells.Count
If r.Cells(l) = 2 Then r.Cells(l).Delete Shift:=xlUp
Next

Set r = Nothing

End Sub
--
Kevin Backmann


"pgc" wrote:

> Please help i have a sheet like this
> A b c
> 2 fun 1
> run 2 100
> i want to delete the numer2 in column A and move "run" in column A to
> cell A1, same in column B,C etc
> i have started a code but it deletes all cells not just the ones with
> the number 2 in
> heres my code
>
> Sub RemoveCells_ShiftUp()
> Application.ScreenUpdating = False
> Application.Calculation = xlManual
> Dim rw As Long, iCol As Long
> For rw = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
> If ActiveCell.Value = 2 Then _
> Cells(rw, 1).Delete Shift:=xlShiftUp
> Next
> Application.Calculation = xlAutomatic
> Application.ScreenUpdating = True
> End Sub
> by the way i am not very good with code
> Hope someone can help
>
>

 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      13th Oct 2006
Sub RemoveCells_ShiftUp()
Application.ScreenUpdating = False
Application.Calculation = xlManual
Dim rw As Long, iCol As Long
For rw = ActiveSheet.UsedRange.Rows.Count + 1 To 2 Step -1
For iCol = 1 To Cells(1, Columns.Count).End(xlToLeft).Column
If Cells(rw - 1, iCol).Value = 2 Then
Cells(rw - 1, iCol).Delete Shift:=xlShiftUp
End If
Next iCol
Next rw
Application.Calculation = xlAutomatic
Application.ScreenUpdating = True
End Sub

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"pgc" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Please help i have a sheet like this
> A b c
> 2 fun 1
> run 2 100
> i want to delete the numer2 in column A and move "run" in column A to
> cell A1, same in column B,C etc
> i have started a code but it deletes all cells not just the ones with
> the number 2 in
> heres my code
>
> Sub RemoveCells_ShiftUp()
> Application.ScreenUpdating = False
> Application.Calculation = xlManual
> Dim rw As Long, iCol As Long
> For rw = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
> If ActiveCell.Value = 2 Then _
> Cells(rw, 1).Delete Shift:=xlShiftUp
> Next
> Application.Calculation = xlAutomatic
> Application.ScreenUpdating = True
> End Sub
> by the way i am not very good with code
> Hope someone can help
>



 
Reply With Quote
 
pgc
Guest
Posts: n/a
 
      13th Oct 2006
great thanks a lot
works a treat
Kevin B wrote:
> I believe the following code will do what you want, just adjust the range of
> A1:F19 accordingly.
>
> Sub RemoveTwo()
>
> Dim r As Range
> Dim l As Long
>
> Set r = Range("A1:F19") 'Your range goes here
>
> For l = 1 To r.Cells.Count
> If r.Cells(l) = 2 Then r.Cells(l).Delete Shift:=xlUp
> Next
>
> Set r = Nothing
>
> End Sub
> --
> Kevin Backmann
>
>
> "pgc" wrote:
>
> > Please help i have a sheet like this
> > A b c
> > 2 fun 1
> > run 2 100
> > i want to delete the numer2 in column A and move "run" in column A to
> > cell A1, same in column B,C etc
> > i have started a code but it deletes all cells not just the ones with
> > the number 2 in
> > heres my code
> >
> > Sub RemoveCells_ShiftUp()
> > Application.ScreenUpdating = False
> > Application.Calculation = xlManual
> > Dim rw As Long, iCol As Long
> > For rw = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
> > If ActiveCell.Value = 2 Then _
> > Cells(rw, 1).Delete Shift:=xlShiftUp
> > Next
> > Application.Calculation = xlAutomatic
> > Application.ScreenUpdating = True
> > End Sub
> > by the way i am not very good with code
> > Hope someone can help
> >
> >


 
Reply With Quote
 
pgc
Guest
Posts: n/a
 
      13th Oct 2006
Thanks Bob
works well
dont suppose you could tell me in plain english why my code didnt work
cheers paul
Bob Phillips wrote:
> Sub RemoveCells_ShiftUp()
> Application.ScreenUpdating = False
> Application.Calculation = xlManual
> Dim rw As Long, iCol As Long
> For rw = ActiveSheet.UsedRange.Rows.Count + 1 To 2 Step -1
> For iCol = 1 To Cells(1, Columns.Count).End(xlToLeft).Column
> If Cells(rw - 1, iCol).Value = 2 Then
> Cells(rw - 1, iCol).Delete Shift:=xlShiftUp
> End If
> Next iCol
> Next rw
> Application.Calculation = xlAutomatic
> Application.ScreenUpdating = True
> End Sub
>
> --
> HTH
>
> Bob Phillips
>
> (replace somewhere in email address with gmail if mailing direct)
>
> "pgc" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Please help i have a sheet like this
> > A b c
> > 2 fun 1
> > run 2 100
> > i want to delete the numer2 in column A and move "run" in column A to
> > cell A1, same in column B,C etc
> > i have started a code but it deletes all cells not just the ones with
> > the number 2 in
> > heres my code
> >
> > Sub RemoveCells_ShiftUp()
> > Application.ScreenUpdating = False
> > Application.Calculation = xlManual
> > Dim rw As Long, iCol As Long
> > For rw = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
> > If ActiveCell.Value = 2 Then _
> > Cells(rw, 1).Delete Shift:=xlShiftUp
> > Next
> > Application.Calculation = xlAutomatic
> > Application.ScreenUpdating = True
> > End Sub
> > by the way i am not very good with code
> > Hope someone can help
> >


 
Reply With Quote
 
pgc
Guest
Posts: n/a
 
      13th Oct 2006
Cheers Kevin
Kevin B wrote:
> I believe the following code will do what you want, just adjust the range of
> A1:F19 accordingly.
>
> Sub RemoveTwo()
>
> Dim r As Range
> Dim l As Long
>
> Set r = Range("A1:F19") 'Your range goes here
>
> For l = 1 To r.Cells.Count
> If r.Cells(l) = 2 Then r.Cells(l).Delete Shift:=xlUp
> Next
>
> Set r = Nothing
>
> End Sub
> --
> Kevin Backmann
>
>
> "pgc" wrote:
>
> > Please help i have a sheet like this
> > A b c
> > 2 fun 1
> > run 2 100
> > i want to delete the numer2 in column A and move "run" in column A to
> > cell A1, same in column B,C etc
> > i have started a code but it deletes all cells not just the ones with
> > the number 2 in
> > heres my code
> >
> > Sub RemoveCells_ShiftUp()
> > Application.ScreenUpdating = False
> > Application.Calculation = xlManual
> > Dim rw As Long, iCol As Long
> > For rw = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
> > If ActiveCell.Value = 2 Then _
> > Cells(rw, 1).Delete Shift:=xlShiftUp
> > Next
> > Application.Calculation = xlAutomatic
> > Application.ScreenUpdating = True
> > End Sub
> > by the way i am not very good with code
> > Hope someone can help
> >
> >


 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      13th Oct 2006
The biggest problem that you had was that you were walking through the whole
range, but only checking the activecell. So if activecell had the value 2,
the test passed for each cell in the range, and you cleared it.

You were also only testing column 1, so after fixing that, there was still a
problem.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"pgc" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Thanks Bob
> works well
> dont suppose you could tell me in plain english why my code didnt work
> cheers paul
> Bob Phillips wrote:
> > Sub RemoveCells_ShiftUp()
> > Application.ScreenUpdating = False
> > Application.Calculation = xlManual
> > Dim rw As Long, iCol As Long
> > For rw = ActiveSheet.UsedRange.Rows.Count + 1 To 2 Step -1
> > For iCol = 1 To Cells(1, Columns.Count).End(xlToLeft).Column
> > If Cells(rw - 1, iCol).Value = 2 Then
> > Cells(rw - 1, iCol).Delete Shift:=xlShiftUp
> > End If
> > Next iCol
> > Next rw
> > Application.Calculation = xlAutomatic
> > Application.ScreenUpdating = True
> > End Sub
> >
> > --
> > HTH
> >
> > Bob Phillips
> >
> > (replace somewhere in email address with gmail if mailing direct)
> >
> > "pgc" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > Please help i have a sheet like this
> > > A b c
> > > 2 fun 1
> > > run 2 100
> > > i want to delete the numer2 in column A and move "run" in column A to
> > > cell A1, same in column B,C etc
> > > i have started a code but it deletes all cells not just the ones with
> > > the number 2 in
> > > heres my code
> > >
> > > Sub RemoveCells_ShiftUp()
> > > Application.ScreenUpdating = False
> > > Application.Calculation = xlManual
> > > Dim rw As Long, iCol As Long
> > > For rw = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
> > > If ActiveCell.Value = 2 Then _
> > > Cells(rw, 1).Delete Shift:=xlShiftUp
> > > Next
> > > Application.Calculation = xlAutomatic
> > > Application.ScreenUpdating = True
> > > End Sub
> > > by the way i am not very good with code
> > > Hope someone can help
> > >

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
delete cells column. Delete empty cells myshak Microsoft Excel Worksheet Functions 0 9th Mar 2009 10:59 PM
Delete cells in Excel 2007 give a pop up: delete entire sheet row? frogman7 Microsoft Excel Discussion 1 15th Jan 2008 08:58 PM
How to delete all the blanc cells in a worksheet and shift cells l =?Utf-8?B?dGlyYW1pc3U=?= Microsoft Excel Misc 2 7th Dec 2006 03:45 AM
macro to select cells containing specific text and delete all cells but these JenIT Microsoft Excel Programming 3 27th Mar 2006 10:07 PM
Delete specific cells contents in a row with some locked cells in the same row trussman Microsoft Excel Programming 2 1st Mar 2005 06:12 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:01 PM.