Macro Works in Excel 2013 but NOT in Excel 2016

Small Paul

Board Regular
Joined
Jun 28, 2018
Messages
118
Hi

I have a number of macros I have written on Excel 2013. I am now transferring them across to other users' machines as I am leaving. They all run Excel 2016. For some reason, the macros fail on 2016.

The start of one macro is as follows:



HTML:
Sub Daily_Open_Trades_Pivot()
'
' Daily_Open_Trades_Pivot Macro
'
    Dim lr As Long
    lr = Cells(Rows.Count, 1).End(xlUp).row
    sheets("Sheet1").delete
    sheets.Add.Name = "Pivot"
    range("B2").Select
    ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
        "Table1", Version:=xlPivotTableVersion15).CreatePivotTable TableDestination _
        :="Pivot!R2C2", TableName:="PivotTable10", DefaultVersion:= _
        xlPivotTableVersion15
    sheets("Pivot").Select

Macro fails AFTER selecting cell B2

Does anybody know why this might happen?

Cheers
Small Paul.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hi Paul

The only way I managed to get a debug was to change thetable numbers at the point you say failed.

I would go through and check the table names against themacro.
 
Upvote 0
Whilst I know nothing about pivots having never used them, you may need to change
Code:
xlPivotTableVersion15
to
Code:
xlPivotTableVersion[COLOR=#ff0000]16[/COLOR]
both times it occurs.
 
Upvote 0
That shouldn't cause failure of the code, it just means the code in 16 will make a pivot table/cache with the features of Excel 15.

Make sure the named table exists, and no pivot table already has the name you want to give to the new pivot table. Also, make sure that adding a pivot table in the target range will not infringe with existing data.

By the way, what is it error? Not error number, because these are reused excessively, but error message.
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,022
Members
448,939
Latest member
Leon Leenders

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