(I have already solved this, but I’m putting this here for reference, b/c I couldn’t find a post like it)
I get a new report every month. I’m making an “auto calc” page. The vision is to have a generic table with formulas set so that I can copy and paste it from my personal file directly into the new report, have the formulas gather all the data across several sheets in one place, then copy and paste the values out. This saves me having to sort and filter each sheet individually, then copy and paste in pieces into another report.
The problem I am facing is that the sheet references don’t survive the copy and paste. i.e. SheetName.B:D either becomes
=VLOOKUP(P7,'file://../My Documents/Files/Numbers/filename.ods'#$'SheetName'.B$1:D$1048576,2,0)
or
=VLOOKUP(P8,OtherSheetName.B:D,2,0)
or it’ll explode with “#REF!”
How do I copy and paste a sheet reference into another file?