Delete Rows Between two Columns

fahadmalik09

New Member
Joined
Jun 1, 2014
Messages
26
Hey Team,

Experience
V1
V2
Mobile No:
Experience
V3
v4
v5
Mobile No:
Experience
V6
Mobile No:
Experience
V7
v8
v9
Mobile No:

<tbody>
</tbody>

I want to delete Values between "Experience" to "Mobile:", ie v1, v2 , v3, v4 .......
Problem is , some has single row below "Experience", some has more than one row below "Experience"

How to delete :confused:
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
If you only want to keep the those two values try
Code:
Sub DelRws()
   With Range("A1", Range("A" & Rows.Count).End(xlUp))
      .Replace "Experience", "=xxxExperience", xlWhole, , False, , False, False
      .Replace "Mobile No:", "=xxxMobile No", xlWhole, , False, , False, False
      .SpecialCells(xlConstants).EntireRow.Delete
      .Replace "=xxxExperience", "Experience", xlWhole, , False, , False, False
      .Replace "=xxxMobile No", "Mobile No:", xlWhole, , False, , False, False
   End With
End Sub
 
Upvote 0
First of all, thanks for the reply,

Only left with Experience , it works but whole sheet is deleted.
Kindly let me describe my scenario once again

Name1
Age1
Experience
v1
v2
v3
Mobile No1
Address1

Name2
Age2
Experience
v4
Mobile No2
Address2

Name3
Age3
Experience
v5
v6
v7
v8
Mobile No3
Address3

I want

Name1
Age1
Mobile1
Address1

Name2
Age2
Mobile2
Address2

Name3
Age3
Mobile3
Address3

Hope, you genius guys can understand , what i am trying to say :(
 
Last edited:
Upvote 0
Do you have blank cells between each group as shown?
and will "Mobile" always be the last line for each group?
 
Last edited:
Upvote 0
...and will "Mobile" always be the last line for each group?
Based on Message #3 , it looks like "Mobile" will not be the last line in each group so your question about the blanks between groups picks up added importance.
 
Upvote 0
The OP added the "Address" line to the post at the same time as I posted.
So that answers 1 of my questions.
But raises another.


Will there only ever be one line after the "Mobile" line & will it always be there?
 
Last edited:
Upvote 0
A1 Name1
A2 Age1
A3 Experience
A4 V1
A5 v2
A6 v3
A7 Mobile1
A8 Address1
A9
A10 Name2
A11 Age2
A12 Experience
A13 V4
A14 v5
A15 Mobile2
A16 Address2


I want

A1 Name1
A2 Age1
A3 Mobile1
A4 Address1
A4
A5 Name2
A6 Age2
A7 Mobile2
A8 Address2

I tried my best to explain, apologise for troubling you guys.

I want to delete Experience as we as v1,v2,v3,.... values before Mobile
 
Upvote 0
In that case try
Code:
Sub DelRws()
   Dim Ar As Areas, Rng As Range
   With Range("A1", Range("A" & Rows.Count).End(xlUp))
      .Replace "Experience", "", xlWhole, , False, , False, False
      Set Ar = .SpecialCells(xlConstants).Areas
   End With
   For Each Rng In Ar
      If Rng.Offset(Rng.Count - 2).Resize(1, 1).Value Like "Mobile*" Then
         Rng.Offset(-1).Resize(Rng.Count - 1).EntireRow.Delete
      End If
   Next Rng
End Sub
 
Upvote 0
It shows error Debug, i end up and run the code, it deleted the Experience word from the sheet

Showing error on this line below
If Rng.Offset(Rng.Count - 2).Resize(1, 1).Value Like "Mobile*" Then

Mobile 1, mobile2, mobile3 are all different values, as i mentioned earlier.

Thanks for the reply, but still stuck
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,425
Messages
6,124,824
Members
449,190
Latest member
rscraig11

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top