only conditional formatted data need to move to new sheet

IMNEWTOEXCEL

New Member
Joined
Apr 26, 2018
Messages
5
Hi,

this is my first post and totally new to excel, I have conditional formatted data it looks for any data which has these words (interface TenGigabitEthernet), (ip address) and (interface Bundle) and highlights it in Yellow, i want to move only this data to another sheet. example below. there are 6000 lines in total and only 50 lines which are highlighted after the conditional formatting and those i need moved.

interface Modular-Cable3/3/2:11
description Node 1
cable bundle 1
cable rf-bandwidth-percent 30

<colgroup><col></colgroup><tbody>
</tbody>
interface TenGigabitEthernet3/3/0
ip address 1.16.1.1 255.255.255.252
interface Bundle1
ip address 1.16.1.1 255.255.255.252


Thanks for the help
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Welcome to the Board!

Why not just use the same formula you use for Conditional Formatting in a new column, that indicates which rows you want. i.e.
Code:
=IF([I]conditions[/I],"MOVE","")
Then you can use this calculated field to determine which rows to move.
You could use Filters, or copy/paste/sort, etc. Whichever method you like best.
 
Upvote 0
Hi Joe,

thanks for the reply, so all my data, all 6000 lines are in column A, and i want to move selected conditional data to column B and it has to be sequential, what would the syntax be, your help is appreciated, since i am totally new to this. i am using office 2007.

this is what i tried =IF(A2=conditions,B2,"") but giving me name error.
 
Upvote 0
I thought you wanted to move it to another sheet, not another column on the same sheet!

Note that you did not use my formula correctly. My instruction was to set up a helper column to identify which rows to move.
In the formula, you would replace "Conditions" with the Conditional Formatting formulas/conditions you are currently using.
What are you current Conditional Formatting rules?

If you set up the formula properly in the structure I initially proposed, all the Conditional Formatting rows would have the word "MOVE" in column B, while the other rows would be blank.
Then, you could filter on this column to return/move the rows you want.

To see how to use Advanced Filters to move those rows to a new range, check out the "Move Data To Another Worksheet" section in this article: http://www.contextures.com/xladvfilter01.html
 
Upvote 0
You are welcome!
Glad I was able to help.:)
 
Upvote 0

Forum statistics

Threads
1,213,497
Messages
6,113,998
Members
448,541
Latest member
iparraguirre89

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