PULL function for Excel 2000?

travisc

Board Regular
Joined
Oct 19, 2005
Messages
138
Anyone know where I can get a PULL function that works with newer Excel versions? Or maybe even remake the original PULL function so it works with newer versions?

Thanks,
Travis
 
Do you have another routine with the same name? Check all modules and look in the right drop down box just above the code pane.
 
Upvote 0
now that i've closed out of the file and reopened it... it accepts PULL... but it doesn't pull the information... file open or not.
 
Upvote 0
Code:
=IF(ISNUMBER(VLOOKUP($A4,PULL("'\\BUNT5DCSRV1\storage\Butler\BM_MFG\Production Reports\2006 Production Reports\May 06''\Labor\[2nd Shift Labor.xls]"&DAY($U$2)&"'!$B$3:$C$86"),2,FALSE))=FALSE,"",VLOOKUP($A4,PULL("'\\BUNT5DCSRV1\storage\Butler\BM_MFG\Production Reports\2006 Production Reports\May 06''\Labor\[2nd Shift Labor.xls]"&DAY($U$2)&"'!$B$3:$C$86"),2,FALSE))

Doesn't work.

Code:
=IF(ISNUMBER(VLOOKUP($A4,INDIRECT("'\\BUNT5DCSRV1\storage\Butler\BM_MFG\Production Reports\2006 Production Reports\May 06''\Labor\[2nd Shift Labor.xls]"&DAY($U$2)&"'!$B$3:$C$86"),2,FALSE))=FALSE,"",VLOOKUP($A4,INDIRECT("'\\BUNT5DCSRV1\storage\Butler\BM_MFG\Production Reports\2006 Production Reports\May 06''\Labor\[2nd Shift Labor.xls]"&DAY($U$2)&"'!$B$3:$C$86"),2,FALSE))

Does, but not with the file closed.
 
Upvote 0
With INDIRECT, yes, the file must be open. To use on a closed workbook you must use the INDIRECT.EXT function from Laurent Longre's morefunc.xll addin; although you've got about one good calc before it will error out.

Maybe you could try an alternative: http://vbaexpress.com/kb/getarticle.php?kb_id=286

They both use an old Excle4Macro method.
 
Upvote 0

Forum statistics

Threads
1,226,904
Messages
6,193,587
Members
453,809
Latest member
KMorales

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