+ Reply to Thread
Results 1 to 11 of 11

convert Google sheet to Excel 2021

  1. #1
    Forum Contributor
    Join Date
    09-03-2008
    Location
    Johannesburg, South Africa
    MS-Off Ver
    2021
    Posts
    311

    convert Google sheet to Excel 2021

    I am trying to convert a google sheet to normal excel sheet, i did get it to convert, but I have a problem with one of the formulas
    in google sheet i have in inligting sheet the following formula in C4
    Please Login or Register  to view this content.
    but in excel it does not show a formula in it, and I need help with this please.

    this is my google sheet
    https://docs.google.com/spreadsheets...it?usp=sharing
    and my excel sheet
    Attached Files Attached Files
    Last edited by hendrikbez; 02-13-2024 at 03:43 AM. Reason: Working now

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,853

    Re: convert Google sheet to Excel 2021

    Please explain what the formula is meant to do in WORDS. It will need some adjustment. What result should it return (value)?
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Contributor
    Join Date
    09-03-2008
    Location
    Johannesburg, South Africa
    MS-Off Ver
    2021
    Posts
    311

    Re: convert Google sheet to Excel 2021

    Hope I can explain it to you, so you understand me.

    Convert from Google Sheet to Excel 2021


    This is my info on main page "Inligting"
    B1= Uitgawes (Heading)
    E1= Inkomste (Heading)
    B2= My dropdown list (No range), added text only Jan, Feb, Mar, Apr, Mei, Jun, Jul, Aug, Sep, Okt, Nov, Des
    B3= Text (Totaal)
    C3= Sum of all amounts below starting at C5
    E3= Text (Totaal)
    F3= Sum of all amounts below starting at F5
    C4= =map(B4:B, lambda(topic, let( sum, sumif(indirect(B2 & "!F:F"), topic, indirect(B2 & "!D:D")), if(or(isblank(topic), sum = 0), iferror(ø), sum) )))
    F4= =map(E4:E, lambda(topic, let( sum, sumif(indirect(B2 & "!N:N"), topic, indirect(B2 & "!K:K")), if(or(isblank(topic), sum = 0), iferror(ø), sum))))
    B5= first entry name
    E5= first entry name

    So the formula in C4 is first looking at My dropdown list in B2, if I choose Feb, it wil get the info from sheet Feb.
    When I then add an item like Uiteet, in Feb, then it will add all the uiteet total in and show it in "Inligting" Uiteet with the full amount (of all uiteet together)


    Same with F4 in Inligting.

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: convert Google sheet to Excel 2021

    Klink vir my jy eet uit veels to veel LOL

    It looks like a SUMIFS() should do what you want.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Forum Contributor
    Join Date
    09-03-2008
    Location
    Johannesburg, South Africa
    MS-Off Ver
    2021
    Posts
    311

    Re: convert Google sheet to Excel 2021

    Was dit maar waar om so baie uit te ett, net 'n toests om die formulla te laat werk.

    Did try this, but not working
    Please Login or Register  to view this content.
    and gets error Getting this

    There is aproblem with this formula
    Not tryig to type a formula
    When the first character is an equal ("=") or minus ("-") sign, Excel thinks its a formula

    you type = 1+1, cell shows: 2
    To get around this, type an apostrophe (') first

    *you type =1+1, cell shows =1+1

    I am not that good in Excel

  6. #6
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: convert Google sheet to Excel 2021

    A few errors that I see...
    ...ISBLANK(B4:B)...
    excel range refs need a col and a row ref - you are missing the 2nd row ref
    B4:B where?

    INDIRECT(B2 & "!F:F")....
    Not sure what that is supposed to be doing, unless B2 contains a sheet name?

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: convert Google sheet to Excel 2021

    The way I sometimes construct an INDIRECT formula is to make a dummy formula just like the INDIRECT would do, but without the INDIRECT.

    So if B2 contains Sheet1 shere SHEET1 is an actual existing sheet you want to reference, then...
    =SUM(sheet1!R:R)

    so the INDIRECT would be...
    =SUM(INDIRECT(B1&"!R:R"))
    where B1 contains the text Sheet1

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,853

    Re: convert Google sheet to Excel 2021

    It's the missing quotes that are causing the issue, I think. The INDIRECT should need to be this:

    =SUM(INDIRECT("'"&B1&&"'!R:R"))

  9. #9
    Forum Contributor
    Join Date
    09-03-2008
    Location
    Johannesburg, South Africa
    MS-Off Ver
    2021
    Posts
    311

    Re: convert Google sheet to Excel 2021

    Thank you, I did try something else and it is working now.

    Did add this in B5, and drag it down

    Please Login or Register  to view this content.

  10. #10
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,853

    Re: convert Google sheet to Excel 2021

    If that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED.

    Also, if you have not already done so, you may not be aware that you can thank anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of each of those who offered help.

  11. #11
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: convert Google sheet to Excel 2021

    Happy to help and thanks for the feedback

+ 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. How can I convert this google sheet formula to excel?
    By aijrlawt in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-29-2023, 03:06 AM
  2. [SOLVED] Half Yearly plan Chart with horizontal-axis lables as H1-2021, H2-2021 ...
    By Sum in forum Excel Charting & Pivots
    Replies: 3
    Last Post: 05-17-2022, 02:34 PM
  3. How to use Regexmatch to filter ranges of Times & Dates (ie, 2021-01-05 08:00 - 2021-01-06
    By rddt in forum For Other Platforms(Mac, Google Docs, Mobile OS etc)
    Replies: 9
    Last Post: 01-10-2021, 05:01 PM
  4. Replies: 1
    Last Post: 01-10-2021, 04:32 AM
  5. Convert short VBA code to google sheet Json
    By tagazou in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-14-2020, 07:44 AM
  6. Convert Excel Macro To Google Sheet Macro
    By jo15765 in forum For Other Platforms(Mac, Google Docs, Mobile OS etc)
    Replies: 0
    Last Post: 05-04-2020, 03:15 PM
  7. Convert Google sheet into Excel
    By Sailaja A in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-29-2015, 03:07 AM

Tags for this Thread

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