Consolidating data on a single sheet...

Charmwah

Board Regular
Joined
Jan 23, 2017
Messages
64
Hi all

I have the following code, which I want to make transferable to other worksheets. Whilst it works perfectly for the worksheet its already in, it'll fail as soon as I try to run the macro in another workbook, because of the filepath. How do I re-write the code to omit the filepath and ensure it works in whichever sheet its run in?

If it helps, the first column are customer names, all the other columns contain figures (integers).

Code:
Sub Consolidate()
'
' Consolidate Macro
'


'
    Columns("D:N").Select
    Selection.EntireColumn.Hidden = True
    Range("P1").Select
    Selection.Consolidate Sources:= _
        "'C:\Users\THISUSER\Documents\Tools\[MYWORKBOOK.xlsm]Pivot2'!R1C4:R250C14" _
        , Function:=xlSum, TopRow:=True, LeftColumn:=True, CreateLinks:=False
    Worksheets("Pivot2").Columns("P:Z").AutoFit
End Sub
Thanks in advance!
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand

Forum statistics

Threads
1,215,368
Messages
6,124,520
Members
449,169
Latest member
mm424

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