VBA: If Range Contains Cell Value Copy than del

harky

Active Member
Joined
Apr 8, 2010
Messages
405
Office Version
  1. 2021
  2. 2019
Platform
  1. Windows
I need help :)


If Col C cell contain 'Poster' OR 'Index' COPY TO
Col E Cell to Col A Cell Than
Delete Col E E

the flow is

*xxx refer to some text

If Col C cell contain 'Poster' OR 'Index'
ABCDE
xxxxxxPoster1362131
xxxxxxIndex1662141

<tbody>
</tbody>


COPY TO Col E Cell to Col A Cell Than
ABCDE
62131xxxPoster1362131
62141xxxIndex1662141

<tbody>
</tbody>


Delete Col E
ABCDE
62131xxxPoster13
62141xxxIndex16

<tbody>
</tbody>
 
Last edited:
Hi, sorry took a while to reply.
I just tested. And now it work well :)
Thanks!

Still not very clear but I notice that you have not made the red & blue changes that I suggested in post 5. That would be a good place to start.
 
Upvote 0

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi,

I spotted one issue.

The code work well but i notice it fill down tlll the very last row of the sheet 10000xxx (I only tested with 24row data)
which make the file size big.
Can it just code on the active-cell?

You're welcome. Thanks for letting us know. :)
 
Last edited:
Upvote 0
24row data - saved file is 200kb

but after tht code, the saved file become 10mb
And Col A & Col E had #NA ended at row 104576

Hi,

I spotted one issue.

The code work well but i notice it fill down tlll the very last row of the sheet 10000xxx (I only tested with 24row data)
which make the file size big.
Can it just code on the active-cell?
 
Upvote 0
Hi,

I spotted one issue.

The code work well but i notice it fill down tlll the very last row of the sheet 10000xxx
I think that you have still not implemented everything that I told you in post 5


If you want to operate on sheet "path" I would add the blue bits and remove the red bits. Also, always best to declare (Dim) your variables.
Rich (BB code):
Sub Poster_Index()
  Dim ws As Worksheet
  
  Set ws = Sheets("path")
  With ws.Range("A1:E" & ws.Range("C" & ws.Rows.Count).End(xlUp).Row)
    <del>ws</del>.Columns(1).Value = Evaluate(Replace(Replace(Replace("IF(ISNUMBER(SEARCH(""|""&#C&""|"",""|Poster|Index|"")),#E   ,#A   )", "#C", .Columns(3).Address), "#E   ", .Columns(5).Address), "#A   ", .Columns(1).Address))
    <del>ws</del>.Columns(5).Value = Evaluate(Replace(Replace("IF(ISNUMBER(SEARCH(""|""&#C&""|"",""|Poster|Index|"")),"""",#E   )", "#C", .Columns(3).Address), "#E   ", .Columns(5).Address))
  End With
End Sub

If you then still have problems, please post the actual code that you are using using.
 
Upvote 0
Hi.. sorry. I notice, i accidentally remove the dot beside Columns
it working great now :)


I think that you have still not implemented everything that I told you in post 5




If you then still have problems, please post the actual code that you are using using.
 
Last edited:
Upvote 0
Hi.. sorry. I notice, i accidentally remove the dot beside Columns
it working great now :)
OK, that certainly could cause the same problem as not removing the 'ws'
Glad it is working now.
 
Upvote 0
Hi, i notice the coding clear the format which i had original.

Some of my number had 0 in-front (e.g 012345) but the code removed the 0 somehow.
I need to retain the 0 in front

OK, that certainly could cause the same problem as not removing the 'ws'
Glad it is working now.
 
Last edited:
Upvote 0
i need to retain the original format value which i had..

the code somehow replace with new value.

OK, that certainly could cause the same problem as not removing the 'ws'
Glad it is working now.
 
Upvote 0
If Column C cell contain 'Poster' or 'Index'

CUT & PASTE Col E to Col A
 
Upvote 0

Forum statistics

Threads
1,214,634
Messages
6,120,659
Members
448,975
Latest member
sweeberry

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