Google Spreadsheet Formula Supportable in Numbers?

Hey Folks,
Am hoping someone might be able to support me here.
I have a spreadsheet I originally created in Google Spreadsheets that I'd like to move to Numbers and am trying to sort out if a formula I've got running in GS works in Numbers.
Basically, each row of one of my spreadsheets contains the information for a financial transaction -- a check register, for all intensive purposes.
COLUMN A: Date
COLUMN B: Item name
COLUMN C: Amount
COLUMN D: BALANCE
COLUMN E: (Blank column)
COLUMN F: CATEGORY
I then have a separate part of the spreadsheet that lists each category and the total amount for each category.
This was achieved by using a formula in Google Spreadsheet like this:
=SUMIF( F:F ; "Groceries", C:C)
In the example above, any line item with the category "Groceries" in F would have its amount (from Column C) taken and added to the current total automatically. I can then reference this Category Total in other spreadsheets, which ends up being very handy.
Have not yet found out if there's a similar formula available in Numbers.
Anyone have any idea what something like this would look like? Would love to be able to replicate it.
Thanks,
Anthony

In fact, the original formula
=SUMIF( F:F ; "Groceries", C:C)
is accepted by Numbers if you remove the embedded typo.
Between F:F and "Groceries", you typed a semi-colon which must be replaced by a comma.
On my French system, I entered:
=SOMME.SI(F:F;"Groceries";C:C)
=SUMIF(F:F,"Groceries",C:C)
and Numbers automatically translated to:
=SOMME.SI(F;"Groceries";C)
=SUMIF(F,"Groceries",C)
Yvan KOENIG (from FRANCE samedi 26 juillet 2008 11:19:30)

Similar Messages

  • Using textbox value in a spreadsheet formula

    Hi,
    I have added an Active-X textbox to my spreadsheet and would like to use the textbox value in a spreadsheet formula. Somehow, the formula does not accept the textbox name as a parameter.
    Textbox name: foo
    Formula: =foo + 1
    Does Excel support using Active-X control values in spreadsheet formulas?
    Thx
    Carsten

    Hi Carsten,
    Not directly, you have to assign a cell with the LinkedCell property which you can use in your formula.
    Andreas.

  • Iframe for a google spreadsheet does not display

    I just noticed that in FF 22 on a Win 7 64 bit machine iframes that refer to google spreadsheets do not display. I have turned of hardware accel in FF to no avail. The site functions properly on Chrome, Opera, and even IE. Some users have reported that it works on Win XP 32 bit.
    This used to all work seemlessly and I don't know when or how this has failed .. maybe a month ago? This is tested on multiple PCs BTW. I have tried safe mode (no plugins) too.
    Here's a link ..
    http://alliancemillsoft.com/millwork-estimating-video/
    it should have two video iframes and then a google form iframe below.

    Works fine here on Linux.
    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Firefox uses the about: protocol to access built-in about: pages that you can open via the location bar just like you open web pages.
    *http://kb.mozillazine.org/About_protocol_links).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Google Spreadsheet Data Connection

    Hi all,
    I have been playing with the Add-On Google Spreadsheet Data Connection and I am not able to publish my Xcelsius design model.
    I get the same error that Natasha mentions in her blog (http://www.natashascorner.com/2009/04/24/connecting-xcelsius-to-google-spreadsheets/) when trying to publish it.
    Has anyone be able to publish an Xcelsius model where data is obtained from a Google Spreadhsheet?
    Many thanks in advance. Regards,
      Imanol

    Hi,
    What I meant is that I am able to see the data if preview the Xcelsius dashboard.
    If I export it to Flash or Power Point I get an error.
    Anyone faced the same issue?
    Many thanks in advance. Regards,
       Imanol

  • RTL and Hebrew support for numbers and pages? when will we have the option for that?

    Still, after 4 years of IOS, there isnt even one sodtware that supports RTL and Hebrew\Arabic, is there a chance that in the near near future we will see that support in "Numbers" and in "Pages"?
    Thanks...

    The best place to make your request is (make sure you give details about exactly what is not working right):
    http://www.apple.com/feedback/pages_ios.html

  • I want to create a formula for telephone numbers in the formula editor

    Is there a way to create a formula for telephone numbers in the "custom" editor in the inspector
    IE if I enter 2123456789 into a cell it automatically formats it to look like this (212) 345-6789

    You can create a new format by opening the Cells Inspector, then selecting "Custom" from the format menu:
    You can add the ### fields and click the menu on the left of the field:

  • Skype api with google spreadsheets

    Hello,
    I want  to integrate skype call from my google spreadsheets, by clicking on the phone number which I have already saved in the sheet.
    Any body can say how I integrate this.
    waiting for your response.
    Arka

    Well, as you say, the Skype API is unsupported but is still in there... so I played around a bit and got something that works (today, with version 7.5, with the moon in its current phase).
    The following script is poorly written, but works:
    set userList to "skypeuser1, skypeuser2, echo123"
    set messageToSend to "Hey, it works!"
    tell application "Skype"
        set chatIDString to send command "CHAT CREATE " & userList & space script name "skype_messages.scpt"
        set chatID to character id 35 & (word 2 of chatIDString) & "/" & (word 3 of chatIDString) & (word 4 of chatIDString)
        send command "CHATMESSAGE " & chatID & space & messageToSend script name "skype_messages.scpt"
    end tell
    Basically, what you're doing is creating a new chat session, which returns the following string:
    "CHAT #yourusername/$c14a201aac174943 STATUS MULTI_SUBSCRIBED"
    The trouble is the CHATMESSAGE command wants only part of that string, from the hash mark (#) to the end of that hex string. AppleScript was giving me headaches about parsing that string as words to get the bits I wanted, so that's why there's the code where I save off the parts I need, and then rebuild them as a chat ID.
    And, as far as I can tell, the name of the script in each Skype command can be anything, but it has to be there.
    Hope this helps,
    Mike
    P.S. Almost forgot... you can get the Skype API reference guide from the Wayback Machine at http://web.archive.org/web/20130607130426/http://d​ev.skype.com/desktop-api-reference#COMMANDS

  • Showing google spreadsheets in sites with iPad.

    I use Google Sites for my business intranet.   I display a few Google Spreadsheets on a few pages.   The spreadsheets do not show when viewing on iPad.

    have you tried
    https://itunes.apple.com/us/app/google-drive/id507874739?mt=8

  • Google Spreadsheet tabs are covered by task bar in latest Firefox version

    When I open a Google spreadsheet in FF, I can no longer see the tabs for separate sheets at the bottom of the spreadsheet because they are covered by the task bar. This does not occur when the same spreadsheet is displayed in Chrome and the problems has only just started occurring with FF 4.0. Is there any solution to this?

    The problem seems to be solved suddenly. I don't know why but every time I load maps now I see the full version and not the lite one. It looks so strange…

  • Movement type 647 does not currently support serial numbers  management

    we can't do "shipment start/PGI for DOWN shipment 1178184 DN# 40309339.
    Error message " Movement type 647 does not currently support serial numbers  management" see also attachment
    Error is like that
    Stop : Save Shipment
      Stop : Shipment 0001178184 :Action for Shipment start
    Read Activities profile ZPGI
    Main issue
    Stop: Movement type 647 does not currentely support serial number management.
    Delivery 001114455 in shipment could not be posted GI
    Ssome problem with the movement type 647. 
    what I understand is, its a SD movement which place the material in transit and automatically executes
    the 101 movement. If possible please help in this matter.
    Pls help what exactly issue and resolution .
    Regards
    Vicky

    Check this thread
    [STO with delivery in 1 step (mvt. type 647) with serial numbering   |STO with delivery in 1 step (mvt. type 647) with serial numbering]
    thanks
    G. Lakshmipathi

  • Pulling data from Google Spreadsheet?

    Has anyone had any luck pulling data into extendscript from a google spreadsheet?  I realize I have to use bridge to make the connection, but I'm wondering about how to actually pull the data.

    If you could share with a http and not a https service - you could set up your own site and save the document there
    You should be able to figure out from this script - http://rorohiko.blogspot.co.il/2013/01/geturlsjsx.html - how to get the info from the web in to idesign.
    You just need the getURLs function in the script and not the script label part of the script.

  • Retrieve all Support Ticket Numbers from Solution Manager

    Hi All,
    I am developing a small custom program which is in Solution Manager version 4.0. So for that program i need to fetch all NOT CONFIRMED support tickets in to Z program.
    How can i fetch all support ticket numbers ? Any function modules are exist  ?
    Thanks in Advance.
    Regards,
    Ranjith

    That application comes on different server CRM.
    You can't call that RFC in R/3.
    You have to developed a code such that call the RFc on CRM(soultion manager server) and retrive all require data to ur server in alv.
    Regards
    ricky

  • Why can't I pan east/west in Google spreadsheet

    Dear Reader,
    I couldn't pan N/S or E/W in a Google spreadsheet. It worked fine in Safari. The Google spreadsheet is active. I can edit cells. It is a very small spreadsheet, 44 rows and 5 columns with no formulae.
    I was using Beta Version 27. I installed Version 26 and the N/S now works fine. E/W doesn't work. If I try panning E/W a few times it might suddenly jerk E/W a few times and then stop.
    I cleared cache and cookies. No difference.
    I restarted in safe mode. No difference.
    As noted, I reinstalled 26 and that fixed the N/S panning but not the E/W panning.
    Any ideas or suggestions?
    John

    Dear Reader,
    Fixed - On my Mac under Systems Preferences>TrackPad>More Gestures, I had "Swipe between pages" which permits "Scroll left or right with two fingers" turned on. When I turned if off, I could pan E/W in Google spreadsheets.
    John

  • Dynamic AE Renders with Google Spreadsheets Docs - Seeking Beta Testers

    Happy New Year Everyone!
    I'm positing this message in an effort to recruit beta testers for a new AE plugin that allows users to convert text layers, footage layers, and solid layers into dynamic audio / visual elements driven by external data at render time.
    With this plugin users connect comp layers to data within a Google Spreadsheet document (or tab-delimited file) that is “fed” into that layer during a batch render. The plugin automatically positions, scales, and fits dynamic sized text strings and images.  If you produce any kind of video template, you can benefit from it because swapping out sources, texts, etc. is extremely easy simply by modifying spreadsheet data. Essentially, you can output batches of unique renders based on the same AEP file using this plugin: think lower-thirds, bumpers, slideshows, presentations, etc.
    I made a screencast showing how the plugin works:
    I would be grateful to any of you who would like participate in the product's beta phase, and will offer participants free upgrades after it is released to the general public.
    If you have any interest, please reply here, or send me a private message via the forum.
    Thank you for your time and consideration!
    Best,
    Arie

    Just wanted to update this thread to point folks to the release version of this plugin.  You can now enjoy its benefits by downloading it at aescripts.com.
    Templater now has extensive written documentation to familiarize yourself with general concepts for working with it and how-to instructions for accomplishing specific tasks.
    Thanks again for all you beta testers out there!  Your time, suggestions, and help have been invaluable. 
    Best,
    Arie

  • Connecting to Google Spreadsheets from Xcelsius

    Is there a way to connect to a Google Spreadsheet as the data source from Xcelsius? One [blogpost|http://www.unchartedblog.com/2009/04/24/connecting-xcelsius-to-google-spreadsheets/] describes how to make the connection using the Google Spreadsheet Connector in Xcelsius Web 2.0 components add-on, but it requires the Google Spreadsheet to be published and publicaly accessible. Which we can't do due to security concerns.
    Any thoughts?

    Hello,
    I think I know how you can achieve exactly what you want. In our organisation I have integrated Google Spreadsheets with BO Dashboards in a neat and hassle free way. We can even schedule the data extraction from Google Spreadsheets to SAP BO and can also fetch data from other Google apps such as Google Calendar into SAP BO. The best part is it's free, no third party software/ licensing involved (other than Microsoft, of course).
    I'll be publishing a document on this on SCN soon (hopefully within this week) and shall paste the link to the doc here when it's ready.
    Regards,
    Sagar Dixit.

Maybe you are looking for

  • RH8 crashes on converting RH7 project...

    ...please bear with me, this is long: I've successfully converted four significant RoboHelp 7 projects to RoboHelp 8 -- however, I have one that continuously, repeatedly crashes RoboHelp: the conversion itself crashes (maybe 2/3 of the way through),

  • Songs are on iPod but will not show! Help me before I lose it!

    I had plugged my iPod in like I ALWAYS do and I was puting some lyrics on my songs when all of a sudden my computer beeped. It said my iPod was not connected and then my iPod reconnected. However when it did it started to ask me to sync it to my comp

  • Bapi or function module for Tcode F-54

    Hi, I need Bapi or Function moudle for tcode F-54. I am developing interfaces. I have to clear the the advance amount against an invoice. Regards, Dhanunjaya Reddy.

  • How do I get my OWN Apple ID back onto my Iphone 4??

    Someone, (one of my children!) somehow, got into my Iphone 4 and typed in THEIR apple ID! I have managed to verify my Apple ID and password, but cannot get my OWN user ID back onto my Iphone when it asks for it (when downloading an app, for example)

  • Java class call from Stored Proc or trigger

    Hi Experts! I have windows 2K server with Oracle 8i Enterprise Edition installed. Please let me know if I can call a java class from Stored Procedure or Trigger. If there is a way, then help me out with code sample or description. Regards, Atul [emai