Formula help in Numbers

First of all, thanks in advance.  This forum has been a great asset to all of us novice users.
I have a spreadsheet with many sheets within.  What I am trying to do is pull info from all sheets into a table so that it makes for a more automated system at the end of the month for billing.
I have a main sheet showing info already gathered from each individual sheet.  Each individual sheet is a customer.  What I need to do is grab all the info from each sheet, but only if it falls within a selected date window.  Not every customer has info entered each month.  Some might go several months with no data entered.  Right now I have to click each sheet and see if there are any entries for the month, then print that sheet.  This wasn't a big deal with 10-15 customers.  But now that I have almost 30+ sheets, it has become a tricky task.  And I only want to show the selected date window,  it keep all the other data totals that come from that sheet.  Basically, I need to see if I showed up and did something at that customers property during the month.
I will get more detailed and post up a shared link if this is a possibility.
Thanks
Jeff

Hi Jeff,
A disclaimer of sorts: I am giving you small picture answers here because I don't really know how all the data is getting used specifically. I imagine there are ways of streamlining your workflow that would surprise you. ok.
Everytime you add a customer you will need to adjust the formula in your report table. As you add rows to the Table I am now calling "Print Bills"  the formula in column B will fill with the link to the last customer table. You will need to manually link to their new table- what you are calling sheets. In my example there are no formulas in the customer tables.
A nested IF means testing one IF statement and then testing another. So we want to test both year and month we might start with:
IF(YEAR($B$1)=YEAR(Bob::A),if-true,"N") this tests the year and returns N if they don't match. In place of if-true we insert our original formula:
IF(MONTH($A$1)=MONTH(Bob::A),"Y","N")
to get:
IF(YEAR($B$1)=YEAR(Bob::A),IF(MONTH($A$1)=MONTH(Bob::A),"Y","N"),"N")
If the year doesn't match return "N", if it does check if the month matches- "Y" or "N"
You can see why too many nested IFs can make you crazy.
The table looks different and B1 needs to be formatted as Date/Time.
Here's a bonus so you can check if every bill was printed. The formula is in C1.
And congrats on your booming biz!
quinn

Similar Messages

  • 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:

  • Help!  Numbers suddenly won't open.   Shows error -1712.   How can I fix?

    Help!  Numbers suddenly won't open.   Shows error -1712.   How can I fix?

    Read this on error 1712: https://discussions.apple.com/message/20350274#20350274
    Sounds like the app is having issues starting. Maybe choking on a file that didn't close correctly?
    Suggest going to System Preferences, General, place a check next to "Close windows when quitting the application".
    Then follow the direction in the link above. Namely, Force Quit that app and restart the computer.

  • 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)

  • Online help for numbers.

    Is it possible to download the online user help for numbers on to my Ipad so I have help when not connected to the internet

    Hi, Feroxjock,
    The good news is that the function help is always avalable within the app.
    But no, there is no offline help at the moment.
    Let them know what you think.
    http://www.apple.com/feedback/numbers_ios.html
    Quinn

  • Need help with numbers formula on ipad

    How can i type this formula (or its equivalent) using an in Numbers  and not mac os?
    =if(isblank(<source cell>), "", <What ever your formula is>)
    Thanks for any suggestions!

    I am trying to hide the zeroes in my destination cell when the formula cells are blank....can't be that hard I just can't figure itnou!!

  • Numbers formula help

    I am setting up a weight loss table. 
    We will weigh in every other week. 
    I want to know how to make a formula update the the weight loss total every weigh in.
    Thx
    ( I am seeing views but no replies, have i worded something wrong or is it confusing? )

    Hi zetian,
    I want to know how to make a formula update the the weight loss total every weigh in.
    I have used a gain or loss of 10 every two weeks to keep it simple.
    Enter 0 (zero) in C2 and D2
    C3 contains this formula (and Fill Down)
    =B3−B2
    D3  contains this formula (and Fill Down)
    =D2+C3
    Conditional Highlighting in Column C gives a red fill for no loss or a weight gain . Greater than or equal to 0. (Not applied to C2).
    Regards,
    Ian.

  • Numbers formula help please - should be easy

    I want to link 5 adjacent cells (from Sheet 1) to 5 other adjacent cells (from Sheet 2).  (Basically display same info when I update Sheet 1 onto Sheet 2).
    I know how to do it 1 cell at a time (=,ENTER).  How can I accomplish all 5 cells in one action.>?  I have many to do....
    Thx

    I'm going to make the assumption that when you say "Sheet 1" you mean "Table 1".
    =INDIRECT(ADDRESS(COLUMN(), ROW(),4,1,"Table 2"))
    Then Fill Down. You should get this result...
    Jerry

  • Formula help!

    Hi,
    I keep a database inventory list of Video Tape duration and need to know a formula to calculate "time" or "Length" totals.
    ie:
    Tape 1 = 01:43:19:06
    Tape 2 = 00:45:20:12
    where in the first tape example (or any tape for that matter) the digits are as follows:
    xx:yy:zz:ww
    xx= hrs
    yy= minutes
    zz= seconds
    ww= frames
    In this case there are 25 frames to make 1 second, and 24 hours in a standard clock.
    If possible, can you show how to change the formula when the Frame (ww) changes to 24, 30, etc.
    Thank you very much.

    RP,
    You may find this example helpful. I think it's close to your request, but simplifies the problem by doing the entries in separate columns for h, m, s and frames. The second Footer Row is an intermediate calculation which I left exposed for clarity.
    Here are the expressions I used:
    Unit Totals...
    Frames: =MOD(SUM(H),25)
    Seconds: =MOD(H8+SUM(F), 60)
    Minutes: =MOD(F8+SUM(D), 60)
    Hours: =D8+SUM(B)
    Carries...
    Frames: =INT(SUM(H)/25)
    Seconds: =INT(SUM(H8,F)/60)
    Minutes: =INT(SUM(F8,D)/60)
    There is no carry from the Hours total, the hours are just allowed to overflow the 24-hour boundary to larger numbers.
    Regards,
    Jerry

  • Formula Help - Multiple criteria

    I'm fairly new to Numbers and am struggling to work out the formula to manage multiple sumif functions. I want to be able to calculate the total of column 'C' where A & B are identical. For example sum of column C where  A=James, B=Vehicle. Sorry if I'm not being clear. Basically total of $ in 'C' where A = James and B = Vehicle.
    Thankyou in advance for the help. 
    A
    B
    C
    James
    Vehicle
    $100.00
    Tom
    Office
    $200.00
    James
    Office
    $150.00
    Brad
    Vehicle
    $275.00

    Dynamic using cell references. I missed the & to make it work.
    =SUMIFS(Table 1::C,Table 1::A,"="&A2,Table 1::B,"="&B2)
    If lucky James has two vehicles,
    And you can add more combinations to Table 1-1
    Regards,
    Ian.

  • Formula help when offline

    Hi,
    the numbers "formulas and functions" help seems to have moved to the internet, which I am pretty upset about. Now, when I don't have an internet connection (I travel a lot), where can I find the help about the formulas and funcitions? The built-in help only has a list fo links to the online version.
    Thaks
    p.

    papalapapp wrote:
    Thank you. I used the "print" funcionality on the website to save a pdf-version, but it is by no means a replacement for the former built-in help which was really good. I hoped that there might be at least an optional installation.
    You are the first one on the forum, to my knowledge, who likes the help function. It's slow and difficult to navigate for most of us. The PDF guides are searchable with the Find function in Preview. The Function Browser, as Wayne notes, is also quite handy and always quick to launch. Another way to launch the Function Browser is to click the function icon on the Format Bar when you are editing a cell's content.
    Jerry

  • Formula help...again.  Data compiling into one sheet

    I've posted something similar before, but it was just different enough I can't figure this one out  .... what I'm looking for it to be able to take info from numerous sheets or tabs, and have them show on a separate sheet, that I can then import into quickbooks.
    here is a link to the dumbed down file.  The help is with how to right the formula to take all work done on all sheets and put it into ONE table.  Quickbooks has an import feature where I can copy a whole sheet and paste directly into OB and not have to enter hundreds of transactions each month. 
    So if there is data entered within a specified date range, then all those entries appear on the new sheet that will be my QB import sheet.  There is a specific table that has to be followed in order for OB to recognize my entries.
    As always, thanks for the help.
    Jeff
    well... I can't post a shared link via iCloud right now.  how do I post a file ?  any ideas?

    Hi Jeff,
    So if there is data entered within a specified date range, then all those entries appear on the new sheet that will be my QB import sheet. 
    A table on a new sheet can "pull" relevant data from tables on other sheets with functions such as SUMIF, LOOKUP and other functions. Perhaps it would work best if those other sheets do some data processing (creating summaries?) first.
    More information from you will lead to a Numbers solution .
    Regards,
    Ian.

  • Formulas : Help for coding

    Hi experts,
    I face a problem I do not find any solution with my lack of coding development background.
    Here is my case :
    I have inserted a cross tab in my report. It looks like this :
    - Column : 3 following objects :
    Table.Period1
    Table.Period2
    Table.Period3
    - Line : Table.SIG containing th e following :
    1 Revenus
    2 Expenses
    3 Margin
    4 Other external expenses
    5 Added value
    => Lines 3 & 5 have been inserted to receive specifics formulas, subject of my thread.
    For example, I'd like to put a simple operation like:
    3 = 1- 2 (numbers, referred to above lines of my cross tab)
    But, in Crystal Report, it seems to be not possible to easily cross objects.
    Someone can help ? Have any idea ?
    Thanks for you time,
    Olivia

    Debi Herbert wrote:
    > You may need to do a manual crosstab which is to say group on your "lines" and using formulas create the columns in the group footer for each "line" and suppress the header and the detail lines.
    Hi Debi, thanks for your reply,
    I've created a report using "manual cross tab"; and also using automatic/manualformulas.
    The thing is a resultat like that :
    Detail   :                     xx
    Detail   :                     xx
    Group Footer 1 : 1 Revenus                                     >> Automatic formula which sumaryze the detail above
    Detail   :                     xx
    Detail   :                     xx
    Group Footer 1 : 2 Expenses                                   >> Automatic formula which sumaryze the detail above
    Group Footer 2 : 3 Margin                                         >> FORMULA that need to sum. the both group footer 1 above. but fail.
    Detail   :                     xx
    Detail   :                     xx
    +Group Footer 1 : 4 Other external expenses            >> Automatic formula which sumaryze the detail above
    Group Footer 2 : 5 Added value                               >> FORMULA that need to sum. Margin + Other external expenses. but fail.
    I do not succed to create a formula that can sumarize objects from different group footer.
    If someone have any idea, i'll much appreciate your help
    Thanks,
    Olivia

  • Formula expression in Numbers

    Hi,
    I'm very new to Numbers so can anybody help me express the formula -
    Anchor Load=Load divided by Cosine half angle over 2
    The "Anchor Load will be 2 x cells, the "Load" would be a cell, the "angle" would be a cell.
    Any help much appreciated.
    Mike

    "What are M and A in image 2?"
    M & A represent the Magnitude and Phase of an FFT (i.e. The real part of a complex FFT and the Phase).
    "Could it be you are looking for the "least absolute residual" instead of "least squares"?"
    I'm not really sure about this.
    In image 2, what are constants and what are the fitting paramters?
    The fitting parameters are "n" and "k" on image 1, representing refractive index and absorption coefficient respectevly, basically, image 3 shows the Real part of an FFT. Image 1 is a trasnfer function that explains image 3 in IDEAL situation, so, I am trying to recreate Image 3 from an Ideal function by replacing the "n" and "k" values constantly untill image 2 is satisfied.  Image 2 basically gives the difference between the actual parameters (i.e. image 3) that were practically measured, and the recreated parameters (estimated from Lev-Med) algorithm.
    "Can you point to a website that describes the theory behind it?"
    Attached is a paper where they describe this process. It has some physics involved but it should be a light read. They use the "Nelder-Mead algorithm" (i.e. the Downhill Simplex nD VI ), but I find it even more difficult to implement this formula on this VI.
    "Simply create a subVI that matches the model template and incorporates your model as a function of [X] and your model parameters"
    Is it possible to give just a simple example VI that includes a "summation and an exponential" form, maybe I can built on that the more complex formula from image 1.
    Overall:
    Even that image 1 contains alot of letters, the only variables are "ns - as seen on image" and "k", all others are defined descrete values. I can perhaps replace all the letters in image 1 with numbers and only leave "n" and "k" as variables to make it easier, and make that as the starting point in building the VI.
    Thanks
    Attachments:
    Highly accurate optical material parameter determination with THz time tomain spectroscopy.pdf ‏426 KB

  • Need formula help - "lookup" or something similar

    Here is my scenerio: 2 Numbers' spreadsheets within a single file. One spreadsheet is strictly for data - behind the scenes stuff. It contains a long list of items and prices associated with them (per unit). Then I have a spreadsheet that will pull information from that data spreadsheet. For example, if I start typing latex it will finish automatically with latex paint. I press enter and it inputs that price. From here, I can do all the calculations.
    Example:
    Row 1 Row 2
    Latex Paint .45
    Metal stud 10.00

    scolainsola,
    Perhaps this example will help. The first lines of the "Particular List" contain a copy of all the data items (colored yellow and hidden in use) so that the autofill feature will work as you described. Then as items are typed in the second table, corresponding values from the "Data" table will appear when the Enter key is struck.
    The formula for column B of the second table is:
    =IF(ISBLANK(A7),"",IFERROR(VLOOKUP(A7,Data :: $A$2:$B$6,2,0),"Not Listed"))
    and is enter beginning with the first typed-in Item, then copied down. This scenario presents a good situation for the use of IFERROR.
    If your list is very large, you may find it desirable to eliminate the the orange rows and build your autofill list as you go.
    pw

Maybe you are looking for

  • How Can I boot from USB - Portege A200

    Hi, I've got an Portege A200 which is only a couple of years old but the hard drive no longer works. Initially I thought this was due to corrupting the boot record on the drive but after attempting to replace the hard drive (with two different drives

  • How would I create a photo gallery like this in Muse?

    Just trying to get the same kind of abilities working in muse. Link for site/gallery below greg noire - photographer

  • Sending a PDF of artwork

    I created an artwork using Illustrator version 10 and saved it on my desktop as a PDF to send to my brother by e-mail but he cannot open the document.  Could you help me regarding this issue?

  • Static LOV functions differently in 9.0.2 from 9.0.1

    In my previous Portal applications under IAS 9.0.1 I had several static LOV's that contained the following structure: DISPLAY VALUE RETURN VALUE Login User Name #PORTAL.wwctx_api.get_user This worked as expected, the user sees the display of 'Login U

  • How to call next page?

    new to scirpts, in my script display... i want to display the same values in the next page... with same settings.. how to do this?