Need to show total of condition result only not the detail

Hi,
I've created a query to report the number of shopping carts with a value over $1000 for a given period of time.  I included the shopping cart and its value in the query but do not display them.  Then I created a condition to keep only those > $1000.  I get the correct result but too many rows, basically one for each shopping cart that meets the condition - I want to report only the result line (total) only per period.
Any ideas?
Thanks
Suzanne

Often when using Conditions, you need to change the Results properties to Summation, so that it sums and displays just the rows that have satisfied the condition(s).  Without the Summation option, the Result row totals are for all the detail rows, including the rows that are not displayed because they meet the conditions(s).
Sounds like in this case you would need to add VB code to the workbook to suppress the detail rows and just display the Result rows.  Don't have an alternative if you are trying to do this on the web.

Similar Messages

  • Why is home sharing showing up on one computer but not the other?

    My homesharing is showing up on one computer but not the other! They are both under the same account and both iTunes are up to date. Unfortunatally, of course its showing up on the computer that I dont need it on. Please help me! Thanks!

    It could be a firewall issue. Try disabling the firewall and see if that helps.

  • How the message appear to reciever only not the sender.

    Hi Everyone,
    I want to know in p2p or client server architucture ,how to view a Instant Message without adding the sender ip or Machine name , such in all IM software the sender see it's message what i need is how the message appear to reciever only not the sender.
    How can i exctract the Machine name on a Lan.

    OCKBA wrote:
    I want to know in p2p or client server architucture ,how to view a Instant Message without adding the sender ip or Machine name ,For the server to receive a message, it has to read it from a socket. To prevent the sender seeing its own message, remember which Socket it came from and make sure it doesn't go back to that Socket.
    How can i exctract the Machine name on a Lan.socket.getRemoteAddress()

  • Results is not the same

    I have this problem:
    steeve@JUK_PROD> create table t1 as select object_name, owner, object_type from all_objects where 1=0;
    Table created.
    steeve@JUK_PROD>
    steeve@JUK_PROD> declare
    2 begin
    3 INSERT INTO t1 (object_name, owner, object_type)
    4 SELECT object_name, owner, object_type FROM all_objects;
    5 end;
    6 /
    PL/SQL procedure successfully completed.
    steeve@JUK_PROD>
    steeve@JUK_PROD> select count(1) from t1;
    COUNT(1)
    39459
    steeve@JUK_PROD> select count(1) from all_objects;
    COUNT(1)
    39459
    You can see here that the number of rows is the same, no problem here.
    steeve@JUK_PROD>
    steeve@JUK_PROD> create table t2 as select object_name, owner, object_type from all_objects where 1=0;
    Table created.
    steeve@JUK_PROD>
    steeve@JUK_PROD> create procedure p is
    2 begin
    3 INSERT INTO t2 (object_name, owner, object_type)
    4 SELECT object_name, owner, object_type FROM all_objects;
    5 end p;
    6 /
    Procedure created.
    steeve@JUK_PROD>
    steeve@JUK_PROD> execute p;
    PL/SQL procedure successfully completed.
    steeve@JUK_PROD>
    steeve@JUK_PROD> select count(1) from t2;
    COUNT(1)
    39441
    steeve@JUK_PROD> select count(1) from all_objects;
    COUNT(1)
    39461
    Why then, when i execute the same code in a procedure, the results is not the same?
    Here is the script to reproduce if you want to troubleshoot:
    rem connected as sys user
    create user steeve identified by steeve default tablespace users;
    ALTER USER STEEVE QUOTA UNLIMITED ON USERS;
    grant create session to steeve;
    grant create procedure to steeve;
    grant create table to steeve;
    rem connect as steeve user
    create table t1 as select object_name, owner, object_type from all_objects where 1=0;
    declare
    begin
    INSERT INTO t1 (object_name, owner, object_type)
    SELECT object_name, owner, object_type FROM all_objects;
    end;
    select count(1) from t1;
    select count(1) from all_objects;
    create table t2 as select object_name, owner, object_type from all_objects where 1=0;
    create procedure p is
    begin
    INSERT INTO t2 (object_name, owner, object_type)
    SELECT object_name, owner, object_type FROM all_objects;
    end p;
    execute p;
    select count(1) from t2;
    select count(1) from all_objects;
    i just want to add, that i dont have that problem when i run the same example connected with the user sys.
    Why this happen?
    what rights the user steeve is missing?
    Message was edited by:
    Steeve

    Check the DDL of all_objects will help understand why some objects are missing.
    Here's a cut out of partial all_objects DDL
    and
           exists (select null from v$enabledprivs
                   where priv_number in (
                                          -144 /* EXECUTE ANY PROCEDURE */,
                                          -141 /* CREATE ANY PROCEDURE */
        or
           o.type# in (12) /* trigger */
           and
           exists (select null from v$enabledprivs
                   where priv_number in (
                                          -152 /* CREATE ANY TRIGGER */
    ...

  • Why do pictures I took on my iPad show up in photo stream but not the iPad camera roll?

    Why do pictures I took on my iPad show up in photo stream but not the iPad camera roll?

    The developers may not have made a version compatible with Mac OS X; if they have, it is a separate download.
    (76462)

  • I need to display only subtotals in the ALV and not the details.

    Hi,
    I have an ALV report . I have totals and subtotals in the same with details.
    My requirement is to have only subtotals and totals in my output. I do not want the details of all the items. I want only the subtotals row.
    Pls advice on this.

    Hi Shweta,
    FOR TOTAL:
    there is a property of fieldcatalog, that is do_sum.
    USE COED LIKE:
    PERFORM fieldcat USING:
    '1' 'KUNNR' 'I_MARD' 'CUSTOMER NO' ,
    '2' 'DMBTR' 'I_MARD' 'CURRENCY' ,
    FORM fieldcat USING value(p_0029)
    value(p_0030)
    value(p_0031)
    value(p_0032)
    wa_fieldcat-col_pos = p_0029.
    wa_fieldcat-fieldname = p_0030.
    wa_fieldcat-tabname = p_0031.
    wa_fieldcat-reptext = p_0032.
    wa_fieldcat-do_sum = 'X'.
    APPEND wa_fieldcat TO i_fieldcat.
    clear wa_fieldcat.
    ENDFORM. " FIELDCAT
    in final output you will get the total of currency field.
    FOR SUB TOTAL:
    decleare: i_sort type standard table of slis_sortinfo_alv,
              wa_sort type slis_t_sortinfo_alv.
    wa_sort-spos = '1'.
    wa_sort-fieldname = 'field1'.
    wa_sort-tablename = 'i_final'
    wa_sort-subtot = 'X'.
    wa_sort-group = 'X'.
    append wa_sort  to i_sort.
    clear: wa_sort.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = sy-repid
    it_fieldcat = it_fieldcat
    it_sort = i_sort
    Hope this can solve your pbs.
    Regards,
    Tutun

  • How can an artist show as a search result yet not exist in the artist list?

    I'm trying to import music from the My Music folder on my computer. I followed the steps outlined in the iTunes tutorial. When I search for the song, the artist and album show as search results, but the song does not. When I follow the link from the search to the artist, iTunes goes to the artist list, and the one I am looking for is not in that list- where does the song go when I upload it into iTunes? And how can the artist show up in a search result as existing in Music, but not actually be in the artist list?

    Hi IWolbers,
    >>I have a recurring problem where all of a sudden I can no longer see the values of my variables when I debug my unit tests. I cannot find a pattern as to when this happens but I experience this across one of every 20 tests that I write. Occasionally
    this has also happened during normal debbuging of running code on my machine.
    So you mean that it worked well before, am I right? 
    If you debug the same app in other VS machine, does it work well? So we could make sure that whether it is related to the VS IDE.
    Please disable all add-ins in your VS IDE, and then reset your VS settings, debug it again.
    https://msdn.microsoft.com/en-us/library/ms247075(v=vs.100).aspx
    Or you could run your VS in safe mode, debug it again, at least, we could know that whether it is the add-in's issue.
    https://msdn.microsoft.com/en-us/library/ms241278.aspx
    To make sure that it is not the project files' issue, create a new blank solution, copy the project files to the new solution, clean and rebuild the solution, check the result.
    >>Once I step over this to the next line (screen shot 2) I get the error message 'The name '[variable name]' does not exist in the current context'
    How about debugging it with "Step Into" instead of "Step Over"? Or you could add breakpoints between 234 line to 241 line, after the breakpoint is hit, check the watch window again. How about the result?
    In addition, do you check other debugger window like local or others?
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I set the New Tab Page so that it only shows my Bookmarks (Like chrome) and not the history ?

    Hello, I've recently installed Firefox on my new PC after giving Chrome yet another chance (I've had bad experiences with it) and after seeing crashes everywhere I just gave up. I'm a long-time Firefox user but I've never been able to figure out how to prevent the New Tab Page from showing the Browser's History.
    Is there a way to make Firefox show Bookmarks and Folders on the NTP instead ? Also, is there a way to make the Bookmarks bar show on the New Tab Page ONLY ?

    The about:newtab page shows pages that you have visited. So if you visit a page by clicking a bookmark then that bookmark will become a history item and will thus appear in one of the tiles on the about:newtab page.
    If you want then you can customize the tiles and drag bookmark (and history) items in a specific tile to pin that web page to that tile.
    You set the number of rows and columns that appear on the about:newtab page by modifying these prefs on the about:config page via a double-click.
    *browser.newtabpage.columns (3)
    *browser.newtabpage.rows (3)
    See also this article about the New Tab page (about:newtab):
    *https://support.mozilla.org/kb/new-tab-page-show-hide-and-customize-top-sites

  • Need to stop photostream on one device but not the other. Which one?

    Here is my problem.  I have photostream activated on my iPhone, iPad, and my Mac (iPhoto).  I take 95% of my photos on my iPhone, but I often like to look at them on the larger screen on my iPad. So I like it that the iPhone photos sync to my iPad through photostream.  However, all of the photos I've taken on my iPhone are there twice; once in the main folder and once in photostream.  I now barely have any free space on my iPhone and I think it is affecting the device's performance (more apps don't open or crash now than ever before, it's processing commands slower). In iTunes it shows barely any free space remaining on the device.  What I'd like to do is to in essence stop duplicating all the photos on my iPhone but keep the iPhone photos flowing to my iPad through photostream.  Can I do this?  Is it as easy as going to Settings and turning off photostream on one of the two devices?  If so, which one?  (If this works, I realize I may have to manually delete the 1000 photos that are currently on my iPhone.  I also would not get any of my iPad photos on my iPhone, but that's okay for now.)  Or, is there "do keep duplicate photo" switch somewhere? I appreciate the advice.  Just don't want to flip the wrong switch.
    For storage purposes, I'm not totally committed to iCloud yet.  I store all my photos in iPhoto on my Mac where I can back them up on disk and hard drive, so I still regularly sync both devices to my Mac through iTunes.

    Photos in albums that you create from the camera roll don't contain duplicates, but only links to the original photos.  However, photos in the my photo stream album are duplicates (although they are "device optimized" copies of the original).  If you want to continue to use photo stream without this happening, you can either import the originals from the camera roll and delete them from your phone, as explained here: http://support.apple.com/kb/HT4083; or, save the photo stream photos on your iPad to the camera roll (by tapping Edit, tap the photos, tap Share, tap Save to Camera Roll), then delete them from the photo stream album on either device.  (Deleting photo stream photos on either device will delete them from the other.)
    If you choose to delete the photo stream photos, you can tap Edit, tap the photos, then tap Delete.
    Also, keep in mind that photo stream will only keep a rolling collection of up to 1000 photos on your devices, so as you add additional photos, older ones will be removed.

  • Email particular pages only not the full form

    Hi Experts
    I am working with LiveCycle Designer ES2 forms. I am trying to add a submit button form as pdf it works fine. My problem is I have 15 pages form but I need to send only the main pages for example I need to send email attachment only the last two pages not the full form.
    Its possible?
    Kindly suggest.
    Thanks in advance

    I think the only option would be to hide the pages.
    pageName(or subForm).presence = "hidden";
    and then after the email routine finishes show the pages again.
    pageName.presence = "visible";
    If you had all the pages you want hidden in one subform then it would just be one line of code.

  • F110 for the proposal action only,not the action to generate payment run

    The user needs to be able to use tcode F110 for the proposal action only, but not the action to generate the payment run.
    Please advise me specifically what action to be taken to reach that objective and whose task is this....Security people will do or FI only.

    Hi,
    Provide Authorization up to praposal only.
    With Help of Basis Team you will restrict user authorization.
    Authorization Activities:
    02         Edit parameters
    03         Display parameters
    11         Execute proposal
    12         Edit proposal
    13         Display proposal
    14         Delete proposal
    15         Create payment medium proposal
    Provide Access 02 to 15 the user can able to execute up to praposal.
    21         Execute payment run
    23         Display payment run
    24         Delete payment run payment data
    25         Create payment media of payment run
    26         Delete payment orders of payment run
    31         Print payment medium manually
    Regards
    Viswa

  • How do you know what the data usage was for and why?  It shows you date and usage but not the reason.

    How can you see what data usage was for on the bill?  It only shows the date and usage but not the reason for the usage.

    You can not see this info on VZW's site. There are apps for smartphones that will break down the info though, but by site or what was downloaded

  • TS2972 Homesharing shows up on one computer but not the other one.

    Homeshare shows up on my desktop but not my laptop. I can acces the laptop library from the desktop fine but the desktop does not even show up on the laptop. Both iTunes versions are the most current. I have tried turning Homeshare off and back on and closing and reopening iTunes. No luck. I have checked firewall settings. Desktop has windows vista and laptop windows 7. Any suggestions?

    EDIT:
    After turning homesharing on and off, closing and reopening iTunes, and waiting, it finally connected. Oddly there are two libraries showing up. Anyway, problem solved for me! If only I could delete this question now, haha.

  • I can sign into my firefox on browser, but in the community page it shows incorrect password ? is it not the same ?

    So, i have a browser account and sync used to work, but not anymore. Also in the support site it shows wrong password. is it not the same account ? Should i need more than one account for the product and the support site ?
    Although it shows that bot am logged in my pc and andriod, my accounts are not in sync.

    No, Sync aka Firefox Accounts uses a separate "username" and password. In fact, all Mozilla sub-domains have a separate registration and login setup. Some of us just use the same username / email address and password for all the sub-domains for making it easier to remember, but that still doesn't allow us to log in once for all the sub-domains.
    How long has it been since you were last able to log in to Sync?
    Firefox 28 and early versions used a different version of Sync, and Firefox 29 made it necessary to "update" each users Sync account to the new Firefox Account.
    See this KB article - [[How to update to the new Firefox Sync]]

  • How to have iMessages show up on one device but not the other?

    So I have an iPhone, a MacBook and an iPad that I own and use, this year my school "gave" (we pay for it but it belongs to the school and have to give it back, go private education!) each student an iPad so now i have one from them as well. I use a different Apple ID for my school iPad than I do for my personal devices so that information from my personal devices doesn't end up on the schools iPad which has a massive amount of spyware on it so they can literally see everything we do. I have it set up for iMessage so my 3 personal devices are all synced and use my phone number from my iphone to iMessage, but my school iPad only uses the email from the Apple ID I made specifically for that iPad. I was wondering if there was a way that the iMessages I receive on my school iPad (via the email) can also be received on my other personal devices, but NONE of the messages or other data received on my phone (via my phone number) also be received on the school iPad. So in essence a sort of one way channel. Thanks in advance!
    P.S.- I don't just use the messages to text my friends I use it for professional purposes also as I am on the executive board of several charities and also a high ranking member of my fathers company.

    No, the scenario you describe is not possible. Sorry.

Maybe you are looking for

  • Error in setting final variable using properties vs hard coding

    I am getting the following error when trying to use this line of code public static final String MESSAGES_BUNDLE_NAME = System.getProperty("messages"); java.lang.ExceptionInInitializerError: java.lang.NullPointerException When I change the above line

  • How to do Data Conversion SSAS ?

    I have fact table and a dimension table where the fields which I want to connect are of different data types i.e integer and string, So I need a help on data conversion how it is done in ssas .

  • Multiple projects - ANT building problem

    Hey all, not sure if this is the correct forum for this but it's the closest fit. So I've got an ANT script which builds my game, but I've got another project called Resources that'll contain components, code, helpful classes etc that I want to use i

  • Rule fragments

    How does rule fragments works? How it would behave when I write rule fragments having both positive and negative conclusions? the person does not have some action if the person's status one is not active or the person's status two is not active or th

  • Creating transport for PI deleted objects

    Hi all, PI newbie here. I have deleted an Integration Scenario as it is no longer needed. I can see this in my Change List, along with the CS object from which this has been removed. How do I get these objects into a transport request? When I right-c