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
 
Got another idea here...

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

I just eliminated the DAY(), and put the day in myself... now the problem I'm having is if that sheet doesn't exist... instead of just returning an #NA or other error... it won't let me enter the formula.
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
I started changing all my formulas to this, then encountered the problem with a sheet not existing...

Each sheet represents a day of the month... and if it's a Sat/Sun, it doesn't have a sheet...
 
Upvote 0
So do these formulas have to update from the files? Do you have Update remote references and Save external links checked in Tools | Options?
 
Upvote 0
You know, I don't know if this is it or not, kind of a long shot. But your cell which houses your text string to be looked at by the Pull() function, what exactly do you have in there? And I mean copy/paste exactly what you have from your formula bar - everything in there.
 
Upvote 0
Okay, what I'm thinking, is if you have something like this as your text from your formula bar ...


'C:\Your\Path\Here\[Book13.xls]Sheet1'!A1:C10

.. it will not work. This is because Excel interpets the first single apostrophe ' sign as saying "this is text" and will not show it in the cell. If you want it to show up, you'll need two[/i] single apostrophe '' signs; not be be confused with the single quote " sign(s).

So the above would be ...

''C:\Your\Path\Here\[Book13.xls]Sheet1'!A1:C10

Try it out and let us know.
 
Upvote 0

Forum statistics

Threads
1,224,905
Messages
6,181,662
Members
453,059
Latest member
jkevin

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