Is it possible to get the sum of all true (checked) columns?

I am totally new to numbers, and I have just a vague understanding of excel, so I be needing some help.
I am a hairstylist and I am using my iPad for client tracking.  My spreadsheet has totals referring to amount of clients, service totals, retail totals, average service tickets, etc.  I also need to track my pre-booking.  An easy way for me to track my pre's is to have a true/false check box column.  Is there a way to add up all of the true checks?  I have other factors I need to track like amount of services so I would like to utilize the true/false check boxes.  I do not want to add the adjoining columns, just the true false columns.  To clarify, I want to add all of the true check boxes with a resulting sum, of only the true (checked) boxes.
Hopefully I'm not being mega confusing....

Yes it is
Use the COUNTIF function

Similar Messages

  • Getting the sum of all members in a hierarchy....

    Hi,
    I want to get the sum of each member in a hierarchy....
    The hierarchy is defined in the table strdet:
    create table strdet
    (costcenterms varchar2(20),     // parent
    costcenterdet varchar2(20),    // child
    lev varchar2(1))The values for each object/material per costcenter(child) is defined in the table details_det:
    create table details_det
    (costcenterms varchar2(20),
    eppid varchar2(30) ,
    purchcontyear0 number(4,1) )Some sample data:
    insert into strdet values ('1' , '1.1','2')
    insert into strdet values ('1' , '1.2','2')
    insert into strdet values ('1.1' , '1.1.1','3')
    insert into strdet values ('1.1' , '1.1.2','3')
    insert into strdet values ('1.2' , '1.2.1','3')
    insert into strdet values ('1.2' , '1.2.2','3')
    insert into strdet values ('1.2' , '1.2.3','3')
    insert into strdet values ('1.1.1' , '1.1.1.1','4')
    insert into strdet values ('1.1.1' , '1.1.1.2','4')
    insert into strdet values ('1.1.2' , '1.1.2.1','4')
    insert into strdet values ('1.2.1' , '1.2.1.1','4')
    insert into strdet values ('1.2.1' , '1.2.1.2','4')
    COMMIT;
    insert into details_det values('1.1.1.1','epp1',10);
    insert into details_det values('1.1.1.1','epp2',20);
    insert into details_det values('1.1.1.1','epp3',0);
    insert into details_det values('1.1.1.2','epp1',0);
    insert into details_det values('1.1.2.1','epp2',5);
    insert into details_det values('1.1.2.1','epp4',15);
    insert into details_det values('1.2.1.1','epp1',65);
    insert into details_det values('1.2.1.1','epp2',95);
    insert into details_det values('1.2.1.2','epp1',5);
    commit;The output of the desired sql stmt must be like this:
    costcenter             val
    1                        220
    1.1                       55
    1.2                     165
    1.1.1                    30
    1.1.2                    20
    1.2.1                  165I have written the following , so far.....
    SQL> select distinct s.costcenterms , sum(purchcontyear0) over(partition by s.costcenterms order by s.costcenterms)
      2        from details_det d , strdet s
      3        where s.costcenterdet=d.costcenterms(+)
      4        start with s.costcenterms='1'
      5             connect by  s.costcenterms = prior s.costcenterdet
      6        order by s.costcenterms
      7  /
    COSTCENTERMS                                                 SUM(PURCHCONTYEAR0)OVER(PARTIT
    1.2                                                         
    1.2.1                                                                                   165
    1.1.1                                                                                    30
    1.1.2                                                                                    20
    1                                                           
    1.1                                                         
    6 rows selectedHow should i modify the above sql stmt to get the desired result...????
    Note: I use OracleDB 10g. v.2
    Thanks, a lot
    Sim

    I' m grateful to all.....!!!!
    I connected as user SYS so as to give the appropriate privileges to SCOTT schema ....
    SQL*Plus: Release 10.2.0.1.0 - Production on Êõñ Óåð 14 11:03:44 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    SQL> connect sys/***@info as sysdba;
    Connected
    SQL> grant create materialized view to scott;
    Grant succedded
    SQL> grant alter any materialized view to scott with admin option;
    Grant succedded
    SQL> connect scott/tiger@info;
    Connected
    SQL> create materialized view mv 
      2  as
      3  select s.costcenterms , sum(connect_by_root d.purchcontyear0) sum_cbr
      4   from details_det d  , strdet s
      5   where s.costcenterdet = d.costcenterms(+)
      6  connect by s.costcenterdet = prior s.costcenterms
      7  group by s.costcenterms
      8  order by length(s.costcenterms) , s.costcenterms ;
    create materialized view mv
    Error in line 1
    ORA-30361: unrecognized string type
    SQL> create materialized view x_mv
      2  as
      3  select grp, sum(purchcontyear0)
      4  from (
      5  select connect_by_root s.costcenterms grp, d.purchcontyear0
      6   from strdet s, details_det d
      7  where s.costcenterdet=d.costcenterms(+)
      8  connect by s.costcenterms = prior s.costcenterdet
      9  )
    10  group by grp
    11  /
    Materialized view created
    SQL> create materialized view mv 
      2  as
      3  select s.costcenterms , sum(connect_by_root d.purchcontyear0) sum_cbr
      4   from details_det d  , strdet s
      5   where s.costcenterdet = d.costcenterms(+)
      6  connect by s.costcenterdet = prior s.costcenterms
      7  group by s.costcenterms ;
    create materialized view mv
    Error in line 1
    ORA-30361: unrecognized string typeTo sum up.....
    Rob's version of definition of mv is unsuccessful... even when i omit the order by clause.... whereas SY's version is successful..... Can you imagine why since... as Rob posted above , it is successful in his environment......!!!!!
    Note: As regards the ORA- error , the cause and action of Oracle is as follows:
    Cause: An internal Oracle error occured.
        Action: Report the problem through your normal support channels. Thanks again,
    Sim

  • Is it possible to get the list of all the idevices on which my apple id is ever used?

    is there any way to find on which devices my apple id was used... here device means iphones or ipads or ipods not the desktop.:P
    if there is any way. please tell me here.. thnx

    Yes it is
    Use the COUNTIF function

  • Get the sum/product of two UDF rows before adding A/R Invoice

    Hi Everyone,
    I am making some tests here where I am trying to get the sum or product of two UDF rows in a service type A/R invoice where I need to get the product before i even add the document.
    The query goes like:
    SELECT T0.[U_UDF1] * T0.[U_UDF2] FROM INV1 T0 WHERE T0.[U_UDF1] = $[INV1.U_UDF1]
    It did not work. Is this possible?
    Thanks,
    Derrick

    Before you add a transaction, the values you specify in the screen are not stored into the database. In an FS you can use SQL statements but in these statements you can refer only to the actual header or row level data with the special expressions starting with $. The system replaces these expressions with a constant containing the actual value before executing the SQL string.
    So there is no possibility to sum the columns with FS before adding the document.
    Sorry, I didnu2019t read carefully your question and probably misunderstood it.
    Edited by: István K#rös on Jan 13, 2011 11:27 AM

  • Is it possible to get the total value for column and assign to other field

    hi,
    Is it possible to get the total value of particular column and assign that value to another field?
    How to do this?
    Thanks in advance,
    SAN

    Afridi,
    My extended controller class code:
    package xxhr.oracle.apps.per.selfservice.appraisals.webui;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
    import oracle.apps.per.selfservice.appraisals.webui.OverviewPageCO;
    import oracle.jbo.Row;
    public class XXOverviewPageCO extends OverviewPageCO {
    public XXOverviewPageCO() {
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    if(pageContext.getParameter("XXCalcAvgButton")!=null){
    throw new OAException("welcome",OAException.INFORMATION);
    //getSum(pageContext, webBean);
    private String getSum(OAPageContext pageContext, OAWebBean webBean) {
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject ratvo = (OAViewObject)am.findViewObject("CompetenceElementsVO");
    OAViewObject valuevo = (OAViewObject)am.findViewObject("PerRatingLevelsVO");
    Integer Sum = new Integer("0");
    int numofRows = ratvo.getRowCount();
    for (int x = 0; x < numofRows; x++) {
    Object Rating =
    ratvo.getRowAtRangeIndex(x).getAttribute("ProficiencyLevelId");
    if(Rating!=null) {
    int numofRowsforvalue = valuevo.getRowCount();
    for(int i=0;i<numofRowsforvalue;i++){
    if(valuevo.getRowAtRangeIndex(i).getAttribute("RatingLevelId").equals(Rating)){
    Object StepValue=valuevo.getRowAtRangeIndex(i).getAttribute("StepValue");
    Sum = new Integer(StepValue.toString()) + Sum;
    OAMessageStyledTextBean displayCompAvg=(OAMessageStyledTextBean)webBean.findChildRecursive("XXCompAvgText");
    displayCompAvg.setValue(pageContext,Sum);
    return null;
    But it is not affecting in the page.
    Can you please tell me what is the problem.

  • I've recently been given a macbook pro from uni, with lots of adobe software on. I want to pair it with my iMac which has music etc and is it possible to get the software to the imac and the files to the macbook?Giving me the best of both :-)

    I've recently been given a macbook pro from uni, with lots of adobe software on. I want to pair it with my iMac which has music etc and is it possible to get the software to the imac and the files to the macbook?Giving me the best of both :-)

    You would need the original installation disks or files for the Adobe software to get it onto your iMac, and having it on two computers may not be allowed by your university's licensing. Talk to whoever issued the MacBook.
    As to the music, just copy it over to the MacBook, either via Home Sharing, file sharing, or an external storage medium (hard drive, USB flash drive, etc.).
    Regards.

  • Is it possible to get the style, font and related info of a paragraph of a in design file and write it on the same in design file  on the  left side

    Is it possible to get the style, font and related info of a paragraph text  of a in design file and write  all the stuff on the same in design file  on the  left side with small fonts 
    as
    Lets  this is a text in in design file    :
    style : abc                      we are going to check the  condition  Agence Wallonne pour la Promotion d'une Agricultur we are going to check the  condition  Agence Wallonne pour la    font 12                                  d'une Agricultu we are going to check the  condition  Agence Wallonne pour la Promotion d'une Agricultu
    style : xyz                      we are going to check the  condition  Agence Wallonne pour la Promotion d'une Agricultur we are going to check the  condition  Agence Wallonne pour la    font 10                                  d'une Agricultu we are going to check the  condition  Agence Wallonne pour la Promotion d'une Agricultu

    Hi Poojith
    Not sure if this would solve your requirment but just in case might be helpful:
    1. We can mix up the HTML and HTMLB components in the JSP Page. However, can access only the HTMLB components in the controller. The following link refers to what customizations are offered by the HTMLB framework:
    [http://www.sapdesignguild.org/resources/htmlb_guidance/]
    2. Another option would be to use AbstractPortalComponents or a simple web app if that's feasible. (where custom UI themes, css and layout are more in control of the developers.)
    Thanks
    Deepak

  • HT1222 Is it possible to get the SSL fix without having to install ios7 (which I tried and hated) or jailbreaking the devices?

    I have a few ipads, iphones and ipod touches of various models, and all run iOS6 of various types (whatever they were running when I last updated them before iOS 7 came along and stopped me being able to get newer versions of 6).
    I tried iOS7 for a while but hated both the appearance and some of the things that changed.
    My ipods have updated to a new version of iOS6 with the SSL fix.
    I can't seem to get this option for the ipads or iphones.
    Is it possible to get the important SSL update for iOS 6 for iPhone5, iPad3, ipad4 and ipad mini (not retina) without having to go to iOS7?
    (It seems that I can get a fix by jailbreaking but I really don't want to do that if there's another option since I have no need for it otherwise.)
    Thanks a lot.

    Thanks, that's helpful. I expected that answer, since I read a load of stuff about Apple pushing people to get iOS 7 despite it having people who disliked it, but was hopeful it was not the case
    Some of the changes, like to calendar were just frustrating.
    Not a big problem though - just means that the next phone and tablet hardware update I get won't be apple.
    Thanks a lot for the swift and helpful replies.

  • Is it possible to get the information from the complete forms send to different email account

    When i have a paid account is it than possible to get the information from the different forms send to seperate emailaddresses.
    Who dont have a account from formscentral but just need the information directly in there own inboxes?
    Because we're looking for a good and simple way to make qoustion & complain forms. But these need to go to different people in the company.

    You can have notifications sent to multiple email addresses, but each will need to have a FormsCentral account.  They can be free accounts.  What you do is create your form and set up the email addresses that you want the information to go to to be Co-authors or Contributors.  The co-author/contributor accounts will then need to log into FormsCentral, go to the Options tab and check the email notifications checkbox. 
    I hope this helps.
    -Jeff

  • Is it possible to get the image from the i pad when mirroring via Apple TV to fill the screen instead of appearing as a screen within a screen?

    When mirroring, is it possible to get the image from the ipad to fill the screen on the TV instead of appearing as a screen within a screen?

    Welcome to the Apple Community.
    No, the iPad has an aspect ratio of 4:3, a TV has an aspect ratio of 16:9, to fit one into the other is impossible without distorting the picture. If your TV has a zoom feature, you may be able to use this to fill the screen a little more to your liking, but this will result in cropping top and bottom.

  • Is it possible to get the position of a charcter from a string ?

    Hi !
    Is it possible to get the position of a charcter from a string ?
    Example:
    @VAR contains the following text "ABCDEFGHIJKLM"
    I'am seaching for FGH, it start on pos. 6 en ends on pos 8.
    How can I get these numbers 6 and 8 ?
    So, I can use them in the MID(text,start,len) function.
    Thanks!

    Hi Sooraj,
    I'll explain more in detail:
    From a web-service I get a variable called @Spec.
    This variable contains the following:
    "MOTORTYPE[CR]D-QW1234[LF]PART[CR]1234-FRD-X[LF]"
    or
    "MOTORTYPE[CR]ABC[LF]PART[CR]E-435[LF]"
    I need the values behind MOTORTYPE[CR] and behind PART[CR]
    But you’ll see that the positions of these values are different each time.
    If there is a way to get the (start) position of "MOTORTYPE[CR]" or "PART[CR]" and the (end) position of the first "[LF]" behind that,
    then I could use the MID() function to get the correct values.
    The values will be displayed in a table view (between other fields).
    An ABAP-call/function won’t work . . . how should I invoke this within a table column/field object ? (system action ?)

  • How to get the sum of  a column in a table layout region

    i have page table layout region and i have many rows in that ...i have a column say xyz now i want the sum of all xyz in all rows ...is that possible ..if it is how..????
    please help me out in this issues...so that i can proceed further with my work..im stuck otu here....if the solution r there in the devguide please tell me where it is ..i mean under which section...bcoz it 1400page document...

    If you are mentioning about table/advanced table region you can enable totalling in those regions. Please check the Table / Advanced Table section as appropriate in Chapter 4 of the dev guide.
    If it is not a table / advancedTable then you will have to programmatically total the column value and display it in the appropriate cell.

  • Is it possible to get the balance sheet report by using profit center

    Dear Experts,
    could you please help me out regarding the following issue.
    business area wise we can get the balance sheet but i want to know is there any possibility to get the BS by using profit centers only for BS Items or can we assign biasness area as well as profit center in a single screen.

    I think you can use this report. S_ALR_87013336
    Regards
    Radha

  • Data recovery, possible to get the file structure back as well?

    Hi Apple Smarties,
    I closed my laptop lid on my external LaCie drive without ejecting the drive first (smart one!). After that the external drive wouldn't mount. I've used Data Rescue 3 to recover all the files from the drive... however it's just lumping all the files into one big batch :-( ...anybody know if it's possible to get the files into the correct files structure they were at before the drive got corrupted?
    Assistance would be HUGELY appreciated.
    Many thanks
    Kind regards
    Doug

    Thank you Barry. Yes, Comcast is my mail provider. It is a POP account.
    Now, if you could point me in the right direction to do that re-build, I would be ever so grateful. I did use the "rebuild" button on the Mail tool bar for that box and it did not help. Perhaps there is something else I could do?
    As I mentioned, I am very new to the Mac world, and I get a little lost. Well, at age 73, I guess that's not hard to do! Been on Windows forever so lots of the terminology in Apple is quite different for me.
    Message was edited by: JanJones

  • I have purchased a G3, because I am an apple fan. I want this a clean installation software provided. Only the link no longer works. Is there a possibility  to get the required software. I Preferably, the Dutch version, but if only the English it's okey

    I have purchased a G3, because I am an apple fan. I want this a clean installation software provided. Only the link no longer works. Is there a possibility  to get the required software. I Preferably, the Dutch version, but if only the English it's okey

    What model G3 is it? An iMac, a PowerMac, a MacBook, or a PowerBook? What is the processor (machine) speed?

Maybe you are looking for

  • Photoshop CS5 won't run in 64-bit on Mac Pro anymore

    Hi, Wondered if anyone could help with the problem I'm having with Photoshop CS5. It's suddenly not working anymore and it crashes on launch straight away. I haven't installed any new updates or moved the app from its original install directory or ad

  • Brand new Ipod touch won't charge or turn on

    I recently got a brand new Ipod touch. The first thing I did was plug it in to charge it. A red battery icon showed up on the screen. I left the ipod on the charger for hours and the icon was still red. It won't turn on either. I have tried connectin

  • ITunes will not install or uninstall

    I keep getting the message "The feature you are trying to use is on a network resource that is unavailable...Cannot find source: C:/Users/User/AppData/Local/Apple/Apple Software Update"

  • Uploading spreadsheet data into the database

    Hi I want to upload the spreadsheet data into the database through front end...I dont have any idea how to do upload without using the 'utilities' option..Can anyone please help me to do this? Thanks in advance Fazila

  • [JS][CS3] Ungroup, and use

    Hi. I am looking for some pointers, rather than finished code.  I have an InDesign page, where I have selected a group, containing 2 image frames.  I need to ungrooup, remove one frame, and do some actions on the remaining frame. I have spent some ti