Copy and Paste Filtered Cells

gregorydigiovanni1

New Member
Joined
Apr 12, 2013
Messages
2
I thought I was an above-average Excel user but apparently not. I have a spreadsheet with about 3000 rows. I have these filtered to 115 rows and wrote a description using concatenate for these 115 rows. I'm now trying to paste these concatenated cells as values to where they belong but I get an error each time. I tried to use Visible Cells Only but that didn't work either.

Any help will be greatly appreciated!

MS Office Professional Plus
Excel 2010
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I don't understand what you mean by concatenating the rows, but here is how I copy and paste discontiguous areas into a combined range:
Code:
.SpecialCells(xlCellTypeVisible).Copy
Set filtSheet = Sheets.Add(After:=Sheets(1))
filtSheet.Name = fltShtName
filtSheet.Paste
 
Upvote 0
Hi James - thanks for the quick reply. In column G I have an export of outdated HTML meta descriptions & keywords similar to

****** name="Description" content="Browse our entire collection of great products. Fresh to your door, 100% guaranteed"/>****** name="Keywords" content="keyword1, keyword2"/>

<tbody>
</tbody>

In Column I, there is the concatenate formula similar to

=CONCATENATE("****** name=""Description"" content=""Browse our ",A111," great products. Arrives fresh in a protected box, 100% guaranteed. See why over 10k people Like us""/>","****** name=""Keywords"" content=""keyword1,",LOWER(A111),"""/>")

I want to take the formulas in Column I and paste them as values in Column G so I can then massively update a website w/ the CSV file.

Hopefully that makes more sense!
 
Upvote 0

Forum statistics

Threads
1,214,805
Messages
6,121,664
Members
449,045
Latest member
Marcus05

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