Google Spreadsheet Import Range #REF! Error (Randomly)

前端 未结 11 1803
情深已故
情深已故 2021-02-05 13:57

This problem has been persistent for a while, just happens every so often at random times, nothing changing. I also do not know how to reproduce the problem, but I\'ll give a de

相关标签:
11条回答
  • 2021-02-05 14:54

    I tried adding :

    if(ISERROR(importrange... 
    

    and it works.

    It doesn't mean the error disappears, but when it happens, you just need to reload the sheet and wait for while and let it update itself.

    It is much more practical than manually changing the big letter to small letter.

    0 讨论(0)
  • 2021-02-05 14:54

    I was able to fix the =REF! error using the Edit > Find and Replace > Find "=" Replace with "#" > Search Selected Range > Also search within formulas > Find > Done. The error corrected without actually initiating the Replace command.

    0 讨论(0)
  • 2021-02-05 14:59

    I had similar issues, and were resolved by NOT using public links to spreadsheets. I have noticed that links are different for public sharing and those coppied from address bar while sheet si opened.

    Also i have noticed some difficulties while opening shared spreadsheets from my other Google accounts. I had to re-allow access for some spreadsheets that i was importing.

    Sorry for my english.

    0 讨论(0)
  • 2021-02-05 14:59

    just to share with you how I resolve this error. Upon checking on my formulas, I have a Circular Reference, which made me encounter this ImportRange internal Error. When I clean my formulas to remove those circular references, it worked again. :)

    0 讨论(0)
  • 2021-02-05 15:00

    The problems with the IMPORTRANGE() function has been somewhat of an ongoing issue. There have been several bugs over the years and it is up to Google to find a stable solution so it works as designed.

    Until then, this might help you:

    Instead of editing the cell, creating a new spreadsheet, or doing anything else to have the sheet reattempt the function (almost like playing lottery), you can force Google sheets to reattempt the function automatically when it fails to load:

    Wrap the IMPORTRANGE() function that is causing problems with an IFERROR() function. That way, the sheet attempts the import, and only if it fails, it attempts it again. The function can be nested to attempt several times in a row.

    You can add named ranges to your source data (right-click-source>define-named-range) to facilitate. For instance, you can create 3 different named ranges for the "J:J" range. Call them "J", "Ja", and "Jay", then you call on your IFERROR() function in the sheet you want to import to:

    =IFERROR( IMPORTRANGE( "SheetID","J" ), IFERROR( IMPORTRANGE( "SheetID","Ja" ), IFERROR( IMPORTRANGE( "SheetID","Jay" ), IFERROR( IMPORTRANGE( "SheetID", "'TabName'!J:J" ), IFERROR( IMPORTRANGE( "SheetID", "'TabName'!j:j" )))))
    

    This formula will attempt your import and deliver it if it succeeds, and if not reattempts a total of 5 times in a row automatically, which doesn't guarantee you will succeed, but if you have a 50% chance of success with your imports, nesting 5 in a row should give you a 96% chance, which is a lot better. My personal experience has been that it hasn't failed since I've done the IFERROR() nest.

    Hope it helps.

    0 讨论(0)
提交回复
热议问题