Formula to select multiple fields (true/False) and create one

Post Author: mmishkin
CA Forum: Formula
I have fields that have true and false options. I need to graph the true options all together but it's not working. I have tried writing a formula to put them all together but i'm still not getting the results I need....here is what I have
Select {BriefOperativeNote.SCIP PreOpABX60Min} case True : "ABX60Min";Select {BriefOperativeNote.SCIP ABXDCd24h} case True : "ABXDCd24h";
I've also tried
If {BriefOperativeNote.SCIP PreOpABX60Min} = True  then  "ABX60Min";
My results should be
ABX60Min =      130 Etc... so that I can graph all the true options together..
Any ideas?

Post Author: sharonmtowler
CA Forum: Formula
either create a group for your true statement and place graph in the header or footer
or limit your report in the select statement to only true, create the graph
then create a sub report in the footer for the others.

Similar Messages

  • Selecting Multiple fields from fillable form in Adobe Reader

    I created a form in Adobe Pro, and want to be able to select multiple fields to cut and paste the results in other parts of the form.
    Does anyone know of a way to do this?
    I would appreciate any help! Thankyou

    Go to Form Edit mode, and then you can select multiple fields either in the Fields list, or on the page itself (using Ctrl), or by holding down the mouse and dragging the selection square over them. Then just Ctrl+C and Ctrl+V in the other page, and you'll get copies.
    Edit: This can only be done in Acrobat, though. Your title talks about Reader but you post is about Acrobat...

  • How do you select and move more than one bookmark at a time? Shift+Click does not select multiple items that are next to one another in a list because the item

    How do you select and move more than one bookmark at a time?
    Shift+Click does not select multiple items that are next to one another in a list because the items open in firefox before this happens.

    Use the bookmarks library. You may use Shift +Click, and Ctrl + Click to create groupings of selected bookmarks to drag and drop.
    * one method of opening the bookmarks library is keyboard shortcut <br /> Ctrl+Shift+B (Windows)
    *see also [[How to use bookmarks to save and organize your favorite websites]]
    *and [[Use bookmark folders to organize your bookmarks]]

  • How can I select multiple photos without tapping on each one individually

    How can I select multiple photos without tapping on each one individually?

    Op: without tapping on each one individually
    tap all the photos you want to delete.
    Note what the OP is asking.

  • Selecting a list of files and creating a list of only the file names?

    Hopefully this is an easy question, one that I can't seem to figure out. I have a folder of photos and I would like to select all their file names and create a text list of just the file names. Every time I try I select the photos themselves and when pasted into my text document all of a sudden I have a lot of images. Any advice on how to do this? Thanks Jeff

    You're part way there. Do this in TextEdit. Open a new document, CMDSHIFTT to put it into plain text format, paste in the contents of your photo folder, and be surprised when only the names get pasted and not the images. If you want them in alphabetical order, change the photo folders view to list and click on the name column before copying.

  • HT2477 How do I select multiple images without clicking on each one? Is there a way to select duplicate photos to delete them?

    How do I select multiple images without clicking on each one? Is there a way to select duplicate photos to delete them?

    Consider adding the delete symbol to the Finder window tool bar.  This way you can highlight all the photos you want to delete at the same time then hit the "delete" symbol.
    Open a Finder window/View/Customize Toolbar - follow the directions in the customized pop down window.

  • Formula to combine multiple fields on one column

    Hi All,
    How do you create a formula in the formula editor that allows you combine several fields onto one column. An example: if I wanted to combine a street address onto one column when it is several fields in the data base. I know I need to seriously work on my coding, because it probbably is not that difficult. I've tried slect statementw with Case True and different If then else statements, but I am not getting all of value to return.
    Regards-

    Hi Kyle,
    To avoid null values you need to convert "Default values for nulls" in the formula editor.
    Edit your formula
    {database.field1} + " " + {database.field2} + " " + {database.field3}
    and in formula editor at the top you can see a dropdown list with "Exception for nulls" change this and select "Default values for nulls"
    Now you can avoid the nulss in output
    Regards,
    Raghavendra

  • Question About Multiple Choice/True/False Answer Alignment

    When I insert a multiple choice or true/false question, The second response (answer B for either question type, is mis-aligned with it's radio button:
    The Master Slide for these questions looks like this:
    I can't figure out how to align the answer with its radio button.  Any ideas?
    I'm using CP 7.0.1.237 on Windows 7.

    This is indeed a very random issue. I have seen this in earlier versions of Captivate as well. I always create my template files from the blank theme, so I don't think it is specific to the theme.
    As for solutions, sometimes changing the quality of slide to high worked, other times just reopening Captivate worked. Here are some of the solutions I have found on these forums:
    1.  Create one more answer than I need (ie for a 4 answer question, create 5 answers) and then delete answer B.
    2.  Uninstalled/reinstalled my Captivate 6 software
    Sreekanth

  • How do I select multiple photos from iPhoto and upload them to a Facebook album?

    I have transferred ALL my photos from my iPhone into my Mac. They are now in iPhoto. I recently created an album and I want to put the photos from iPhoto into it, but not all the photos. I have quite a lot of photos to put in, and I don't know how to select multiple photos and put them in the album. Help me please!

    Create  an album in the left hand pane of iPhoto and drag the 4 photos into it.  Open the albume and select all four photos and click on the Share button.  Next select Email and go from there.
    Happy Holidays

  • How to Sort JTable data using Multiple fields (Date, time and string)

    I have to fill the JTable data with some date, time and string values. for example my table data looks like this:
    "1998/12/14","15:14:38","Unicorn1","row1"
    "1998/12/14","15:14:39","Unicorn2","row2"
    "1998/12/14","15:14:40","Unicorn4","row3"
    "1998/12/17","12:14:12","Unicorn4","row6"
    Now the Sorted Table should be in the following way:
    "1998/12/17","12:14:12","Unicorn4","row6"
    "1998/12/14","15:14:40","Unicorn4","row3"
    "1998/12/14","15:14:39","Unicorn2","row2"
    "1998/12/14","15:14:38","Unicorn1","row1"
    ie First Date field should be sorted, if 2 date fields are same then sort based on time. if date and time fields are same then need to be sorted on String field.
    So if any one worked on this please throw some light on how to proceed. I know how to sort based on single column.
    But now i need to sort on multiple columns.So what is code change in the Comparater class.
    Thanks in advance.. This is urgent....

    I think your Schedule objects should implement Comparable. Then you can sort your linked list using the Collections.sort() method without passing in a Comparator.class Schedule(Date date, String class) implements Comparable
      public void compareTo(Object obj)
        Schedule other = (Schedule)obj;
        return date.getTime() - other.getDate().getTime();
    }

  • Selecting Multiple Keywords for an "AND" Images Selection

    When selecting images in iPhoto, one feature that I liked was the ability to fine-tune my image selection by choosing multiple Keywords. For example, I might have 50 images of Mary, either by herself or with other people, and one of the Keywords assigned to those 50 images is "Mary." I might also have 25 images of Joe, also either by himself or with other people, with one of the Keywords assigned of "Joe."
    Out of all my images, there might be 5 images that include both Mary and Joe together. In iPhoto, I could rapidly find those 5 images of Mary and Joe together by clicking and selecting the separate Keywords "Mary" and "Joe" from the list of all my iPhoto Keywords.
    Unless I'm missing something, the only way I have found to do this in Lightroom 1.0 is by typing both Mary and Joe in the FIND dialog box to find JUST the images of Mary and Joe together.
    It is my understanding that LR currently has an "OR" find command when I "COMMAND-click" (Mac) on the Mary and Joe keywords, LR displays ALL the images of Mary and Joe. I would like to see a feature in future versions of LR where I could "OPTION-click" on the Keywords that I had set up in LR that would then initiate an "AND" Find command for the Keywords selected so that LR displays images where Mary AND Joe appear together in the images.

    I did go to the LR Extras FAQ. However, I didn't find the specific references that you mention. I did notice a couple of topics that cover "intersections," but I don't think that addresses my specific request.
    For example, If I'm searching through ALL of my images and I want to DISPLAY only the images of that I've taken of rivers in California, I would like to be able to do it in LR in ONE keystroke(OPTION) and TWO mouse clicks (in iPhoto, you can do it in two mouse clicks).
    Currently, in LR 1.0, if I use the FIND panel, I would have to type in several keystrokes. If I don't have any COLLECTIONS for rivers or California, but do have KEYWORDS of "rivers" and "California," is there anyway I can select from the Keywords to have JUST the rivers in California displayed? To just have them highlighted only would force me to scroll through hundreds of pictures taken in California, when I might only have twenty photos of California rivers.
    I appreciate your offer of help and please point me in the right direction if I am missing something. I do plan to re-visit the site again as I can see that it contains a lot of good insightful info about LR. Thanks.

  • Select multiple tabs using keyboard and mouse

    Simply put, I used to be able to select multiple tabs byt haveing one selected, holding down the Ctrl + Shift keys, and then clicking on the last tab I wanted to be added to the selection.
    That function seems to have disappeared, is there any way to recover it?

    Hi 1031982!
    Were you using the Multiple Tab Handler add-on? If so, it seems it's not yet fully compatible with the latest version of Firefox (you can check some of the comments here on the add-ons page: https://addons.mozilla.org/en-US/firefox/addon/multiple-tab-handler/ ).

  • Select -options (fields as mandatory) and alv

    Hi all,
    i have 5 fields in select options and alv table , based on selection criteria values will display in alv table. now i want to make 2 fields as mandatory in select-options. without entering values in those two fields it should not allow the values to display iin alv table , it should rise a message..
    (i have not created node for select-options ,i have directly used data type in wddoinit for select-options and for alv table i have created node)
    thanks all

    Hi,
    In wddoinit while creating select options by ADD_SELECTION_FIELD method ,it has a parameter called I_OBLIGATORY. Set it as X and thus the field becomes mandatory.
    Regards
    Karthiheyan M

  • User selecting multiple UIButtons with touch and drag

    I am wondering if it's possible to have a user touch and drag across multiple buttons so that I can tell which buttons have been selected.
    This is similar to to a matrix of buttons in OS X. If a user clicks and drags over a number of buttons, there is an array that can be read to see which were 'selected'. I don't see a UIMatrix and Embed Objects In menu in Interface Builder while in iPhone development only gives a View selection.
    Thanks!

    It seems this is being done by others. However, right now, I'm tracking the touch location and manually figuring out which button is under the drag. I let the underlying view be the user interaction and turn off the interaction on the UIButtons themselves. Yet, this seems to task the processor quite a bit and it takes too long to highlight the UIButtons.
    It's such a simple thing for OS X, I can' believe they dropped this functionality on the iPhone. Can anyone please give some hints as to something to try here.
    Thanks.

  • SELECTION SCREEN FIELD FOR MONTH AND YEAR

    Hi All.
    We are developing a 'Monthly Sales Tax(payable) Report.
    they want the report based on the date(in the selection screen it will come only month and year only.).Depends on that month and year for that select-options ,it will pick up the record.
    like if, jan 2005  to march 2006.
    then it will  pick up from 01.01 .20005 to 31.03.2006  records.
    Can any body help me to resolve this.
    Thanks in advance,
    Regards,
    Venkat

    Hi Venkat,
    Copy the following code.
    DATA :  ws_billfrom    TYPE dats,
            ws_billto      TYPE dats.
    DATA : mon TYPE fcltx.
    SELECT-OPTIONS: s_month FOR mon
                MATCHCODE OBJECT zsdhtch_sh_mnth
                OBLIGATORY. "o get values for F4
    PARAMETER :  p_year LIKE bkpf-gjahr
                 MATCHCODE OBJECT zsdhtch_sh_year
                 OBLIGATORY.
    RANGES : s_date FOR sy-datum.
    DATA : ws_fcmnr TYPE fcmnr.
    START-OF-SELECTION.
      SELECT SINGLE mnr
             INTO ws_fcmnr
             FROM t247
             WHERE ltx = s_month-low.
      CONCATENATE p_year ws_fcmnr '01' INTO ws_billfrom.
      CALL FUNCTION 'HR_JP_MONTH_BEGIN_END_DATE'
           EXPORTING
                iv_date             = ws_billfrom
           IMPORTING
                ev_month_begin_date = ws_billfrom
                ev_month_end_date   = ws_billto.
      s_date-low = ws_billfrom.
      s_date-high = ws_billto.
      s_date-sign = 'I'.
      s_date-option = 'BT'.
      IF NOT s_month-high IS INITIAL.
        SELECT SINGLE mnr
               INTO ws_fcmnr
               FROM t247
               WHERE ltx = s_month-high.
        CONCATENATE p_year ws_fcmnr '01' INTO ws_billfrom.
        CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS'
             EXPORTING
                  day_in            = ws_billfrom
             IMPORTING
                  last_day_of_month = ws_billto.
        s_date-high = ws_billto.
      ENDIF.
      APPEND s_date.
      WRITE s_date.
    You can write your select statement here.  
      select * from dbtable where date in s_date.
    If 'HR_JP_MONTH_BEGIN_END_DATE' is nto there in your server, you can use 'RP_LAST_DAY_OF_MONTHS' in both cases.
    Regards,
    Susmitha.
    Dont forget to reward points for  useful answers

Maybe you are looking for

  • Time out error in deploying the process on weblogic server

    Hi, While deploying the BPEL process in Weblogic 10.3.4, following Exception comes on soa server console. I am sure this is not related to my application, but due to this I am not able to deploy the process on server, it lead with connection time out

  • Identity Constraint in XML Schema

    Hi, I am trying to validate an xml so that the value of one tag<ns0:transid> should be unique. The XML is given below: <?xml version="1.0" encoding="UTF-8"?> <ns0:transactions  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'    xmlns:ns0='http:

  • Missing method fromXML() in JCO 3.0.5

    Hi, I'm currently upgrading our company's SAP connector code from JCO 2.1.8 to JCO 3.0.5. There is a lot of refactoring necessary of course, but so far I've always found in the new 3.0 API what I needed. But now I'm stuck. In JCO 2.1.8 there was a me

  • Weblogic问题收集-2

    5.weblogic700+oracle9iR2问题 weblogic700完全可以和oralcle9i2结合.目前我使用的就是weblogic7+oracle9i2.而weblogic6.1不能和oracle9i2整合. 将orcle9i的jdbc/lib目录下的class12_g.jar放入weblogic的启动classpath中.不要使用class12.jar(那个可以针对oracle9i01或者oracle817) 6.DataSource 和 Tx DataSource 之间有何区别

  • No complete albums on the cloud

    Hi After about 12 hours, iTunes said it had completed matching my library. However, when I go to my iPhone I find that not one album has been uploaded in it entirety; most are showing just three or four tracks. What's more, some albums don't appear a