mikeannetta
New Member
- Joined
- Oct 6, 2015
- Messages
- 15
- Office Version
- 2019
- Platform
- 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!
Any suggestion on what and why its not working?
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: