+ Reply to Thread
Results 1 to 9 of 9

Compatability between excel & google sheet formulas..

  1. #1
    Forum Contributor
    Join Date
    02-04-2008
    MS-Off Ver
    Microsoft Office 2007
    Posts
    261

    Compatability between excel & google sheet formulas..

    Hi,

    I'm having some sort of trouble with the compatibility of formula between excel and Google sheet,i made an spread sheet and
    i have uploaded it to the Google drive,

    Below formula works perfectly well on spreadsheet,when i add a workbook named "1" it would catch up the data without any fuss,but google
    sheet doesn't do so,any solutions..

    I could manually copy and paste the formulas in the google sheet and it is giving result,i'm looking for another solution

    =IFERROR(INDIRECT("'1'!$L"&ROW($L10)),0)

    Thanks,
    Ak

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Compatability between excel & google sheet formulas..

    I don't use Google docs much, admittedly, but I do believe you don't need the quotes around the sheet name in GD like you do in Excel. Maybe:

    =IFERROR(INDIRECT("1!$L" & ROW($L10)),0)

    Possibly try the CONCATENATE method:

    =IFERROR(INDIRECT(CONCATENATE("1!$L", ROW($L10))), 0)
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Contributor
    Join Date
    02-04-2008
    MS-Off Ver
    Microsoft Office 2007
    Posts
    261

    Re: Compatability between excel & google sheet formulas..

    Thanks JB but it didn't help, I think we will have to incorporate something like now() into the formula to act as a trigger to have it update more often.

    Any Suggestions...

    Thanks,
    Ak

  4. #4
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Compatability between excel & google sheet formulas..

    =IFERROR(INDIRECT("'1'!$L"&ROW($L10)),0)
    works fine for me in google sheets
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  5. #5
    Forum Contributor
    Join Date
    02-04-2008
    MS-Off Ver
    Microsoft Office 2007
    Posts
    261

    Re: Compatability between excel & google sheet formulas..

    Martin it will work if the book "1" exists already,in my case "=IFERROR(INDIRECT("1!$L" & ROW($L10)),0)" formula is there
    on my summary book and book 1 doesn't exist,whenever i required the book 1 i make it,then the formula in the summary doesn't update..

    hope you got my point..

    Thanks,
    Ak

  6. #6
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,697

    Re: Compatability between excel & google sheet formulas..

    There is some confusion with your terminology - I think you mean that you are adding a SHEET named 1, not a BOOK.

    Perhaps your calculation mode is set to Manual - press F9 after creating the sheet to see if it re-calculates.

    Hope this helps.

    Pete

  7. #7
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Compatability between excel & google sheet formulas..

    i just played around with it. looks like google sheets does not update the indirect unless you change something inside the indirect
    take
    =iferror(INDIRECT("'4'!$l"&ROW($L10)),0) and there is no sheet called 4
    insert a sheet name it 4 put something in l10 say xxxxxxx
    =iferror(INDIRECT("'4'!$l"&ROW($L10)),0) stays as 0 despite trying to re-enter it
    change something inside the indirect like remove the $
    =iferror(INDIRECT("'4'!l"&ROW($L10)),0) then enter and it updates

  8. #8
    Forum Contributor
    Join Date
    02-04-2008
    MS-Off Ver
    Microsoft Office 2007
    Posts
    261

    Re: Compatability between excel & google sheet formulas..

    Yes i mean a sheet,i pressed F9 after inserting a sheet but nothing happened..

  9. #9
    Forum Contributor
    Join Date
    02-04-2008
    MS-Off Ver
    Microsoft Office 2007
    Posts
    261

    Re: Compatability between excel & google sheet formulas..

    Martin i tried your way also still no luck.
    any other options..

    Quote Originally Posted by martindwilson View Post
    i just played around with it. looks like google sheets does not update the indirect unless you change something inside the indirect
    take
    =iferror(INDIRECT("'4'!$l"&ROW($L10)),0) and there is no sheet called 4
    insert a sheet name it 4 put something in l10 say xxxxxxx
    =iferror(INDIRECT("'4'!$l"&ROW($L10)),0) stays as 0 despite trying to re-enter it
    change something inside the indirect like remove the $
    =iferror(INDIRECT("'4'!l"&ROW($L10)),0) then enter and it updates

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Excel to Google Sheet Comparison
    By madhatterz in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-31-2013, 08:51 AM
  2. Pull google results - title, description,url into excel sheet using VBA
    By joewhyte in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-31-2013, 09:53 PM
  3. google excel spreadsheet not auto-populating with formulas, but skipping row of data entry
    By dzm in forum For Other Platforms(Mac, Google Docs, Mobile OS etc)
    Replies: 9
    Last Post: 05-12-2013, 09:55 PM
  4. Possible to make an Excel sheet that can extract data from Google?
    By simpleonline1234 in forum Excel General
    Replies: 1
    Last Post: 05-18-2010, 01:57 PM
  5. Replies: 3
    Last Post: 02-03-2010, 01:32 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1