Copy Data from Google Chrome vs. Internet Exployer

mikeannetta

New Member
Joined
Oct 6, 2015
Messages
13
Office Version
  1. 2019
Platform
  1. Windows
Copy data from Internet Explorer vs Google Chrome



Every few days I import data from my Online Baking Account into my Excel based Budget Tracker.
When I use Google Chrome and connect to the bank, the import macro works perfectly.
However, if I use IE I get the following error?

"Rub-time error '1004':
We can't paste because the Copy area aren't the same size....."


Like I said, the only difference is Google Chrome vs IE.
FYI: I’m using Excel 2013, Windows 10, IE ver. 11.0.22 and Google Chrome ver. 45.0.2454.101m


Here is what the VB Debug Shows!
Code:
 ' STEP 2
 Sheets("Import Checking").Select

 ActiveCell.Offset(5, 11).Range("A1").Select
 Range(Selection, Selection.End(xlDown)).Select
 Range(Selection, Selection.End(xlToLeft)).Select
 Application.CutCopyMode = False
 Selection.Copy
 ActiveCell.Activate
 Selection.Copy
 Sheets("PIVOT DATA").Select
 Application.Goto Reference:="R100000C1"
 ActiveCell.Offset(0, 1).Range("A1").Select
 Selection.End(xlUp).Select
 ActiveCell.Offset(1, 0).Range("A1").Select
 Selection.PasteSpecial Paste:=xlPasteValues, Operation: =xlNone, SkipBlanks _
 :=False, Transpose:=False
 Range("A1").Select
 Sheets("Import Checking").Select
 Application.CutCopyMode = False
 Sheets("PIVOT DATA").Select


Any suggestion on what and why its not working?
 
Last edited by a moderator:

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.
I'd guess there are merged cells in either the range you're copying, or the destination. Or else the copied range won't fit on the sheet.
 
Upvote 0
"RoryA, why does it work getting the data from Google Chrome and Not IE or even using Microsoft Edge? I'm baffled!
 
Last edited by a moderator:
Upvote 0
I don't know for sure - I can only assume that Chrome renders the site slightly differently to IE/Edge.
 
Upvote 0
Thanks for looking at this! If I find out any other reason, I'll re-post.
 
Upvote 0

Forum statistics

Threads
1,214,810
Messages
6,121,690
Members
449,048
Latest member
81jamesacct

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