Monthtodate showing year to date totals

I have document all designed with crosstab, all i want it month to date totals and year to date totals.  i have use existing formulas and the yeartodate one works, however, the monthtodate is displaying year to date totals on the report.
Can someone please help?  I am farily new to Crystal.

Thank you for responding Ian.
I am confused now, how will I get the Call types across the top if i don't use a cross tab?
                    Hardware              Software             Merchandise                 HR                
1                   MTD                        MTD                         MTD                           MTD
                     YTD                        YTD                         YTD                           YTD
2                   MTD                        MTD                         MTD                           MTD
                     YTD                        YTD                         YTD                           YTD
3                   MTD                        MTD                         MTD                           MTD
                     YTD                        YTD                         YTD                           YTD
4                   MTD                        MTD                         MTD                           MTD
                     YTD                        YTD                         YTD                           YTD
This is what i have, but the MTD total is the same as the YTD total.
Or am i way off base?
Nita Kay

Similar Messages

  • How do I show "year" in date received or sent columns?

    +My constant struggle with Mail goes on but I am not giving up yet.+
    Mail shows me month, day, hour and minute. But not the year of messages received or sent.
    When I upgraded to Snow Leopard and switched from using Entourage to Mail, I imported all my mail and folders. That part worked ok. However, none of those messages - or current new ones, show the year of the message. Since I have a lot of messages stored in folders that span a few years this is very confusing.
    I have searched Mail Help; I tried every Preference option I thought made any sense, but I cannot find anything that allows me to show Year in the Date Received or Sent columns.
    Please, can anyone point me in the right direction?

    Hello.
    What do you mean "see if it is displaying the date?"
    That pull down menu offers four options: none, default, all or custom. There's nothing there pertaining to date.
    In any case, I have tried all four and, of course, none make the date appear in Received or Sent columns. I say, of course, because this drop down is about Headers. I don't want to and shouldn't have to look into each message to see the date. The date - the year as well as month, day, etc., should show in the inbox columns.
    This is seriously nuts that it doesn't and that I cannot find a way to make it do so.

  • Calendar 7.0 does not show year overview data

    In past iterations of Calendar, when I switched to the "year" view, I would get a nice density graph across the various dates, so I could tell at a glance how heavily scheduled a certain week or month is...
    Now when I click on "year view", I see only a blank calendar, and have to click on each date to see if I have something scheduled there. Is there a way to return the previous overview functionality?
    Thank you -
    Randy
    OS X 10.9.5
    2.7 GHz Intel Core i5
    Calendar Version 7.0 (1841.1)

    I just successfully created an event called "Good Saturday" for today (Saturday).  It was not a day long event - only an hour long event.
    I created a "Good Saturday" day long event for next Saturday and that succeeded.
    So I conclude the issue you are seeing must be with the calendar account(s) you are using.
    I also run the same build of calendar you have.

  • Calculating Year to Date Totals

    Develper advises they have no solution in Crystal for the following.  Report requires display of monthly expenditure totals and a YTD total that represents the cummulative total of each month.  The report displays a YTD total for the end of each month.  Problem is that when a given month has a zero value for the monthly expenditure, the report is displaying a zero value for the YTD total and failing to pick up the YTD from the previous month end....
    Does anyone understand the developer's issue and/or have a solution?

    You should be able to group off year, month, put the field in detail section, then create a summary from
    that field.  Right click the field, select insert summary, and select the groups, or footers as needed.
    If that does not work, you may need to try running totals.

  • Using an expression in SSRS to display rolling 12 month and year to date volumes

    I need some help in writing an expression in SSRS. I have a table that contains date columns and rows that contain different types of data groups. (e.g. total number of items received during the month, total dollars for the month, etc.) I want to add two
    new columns to the end of the report that will display a rolling twelve month total for each of the different rows of data. Plus a column that would show year to date totals for the same rows.
    I was thinking I could accomplish this by adding expressions for each row in the new 'rolling twelve month' and 'YTD' columns in my report however, I'm not sure how to structure the expressions to achieve this.
    Here is an example of how my report currently looks. (I added a pipe delimeter in case the formatting changes once this is submitted.)
                             Jan-2014 | Feb-2014 | Mar-2014 | Apr-2014 | Rolling 12 mth | YTD
    Items received     100 | 35 | 45 | 12 | 192 | 192
    Dollars                $50.00 | $25.00 | $120.00 | $15.00 | $210.00 | $210.00
    Any guidance you can provide would be appreciated.
    Thank you  

    This example shows how to get what you need. It'll take modifying your query to add two cased columns onto the end.
    DECLARE @forumTable TABLE (periodYear INT, periodMonth INT, periodMonthName VARCHAR(12), periodDollars MONEY, periodItems INT)
    DECLARE @i INT = 0
    SET NOCOUNT ON
    WHILE @i < 24
    BEGIN
    INSERT INTO @forumTable (periodYear, periodMonth, periodMonthName, periodDollars, periodItems)
    VALUES (YEAR(DATEADD(MONTH,-@i,GETDATE())), Month(DATEADD(MONTH,-@i,GETDATE())), DATENAME(MONTH,DATEADD(MONTH,-@i,GETDATE())), 1000-@i, 100-@i)
    SET @i = @i+1
    END
    SET NOCOUNT OFF
    SELECT *,
    CASE WHEN CONVERT(VARCHAR,periodYear) + '-' + CONVERT(VARCHAR,periodMonth) + '-01' > DATEADD(MONTH,-12,GETDATE()) THEN periodItems ELSE 0 END AS ytdItems,
    CASE WHEN CONVERT(VARCHAR,periodYear) + '-' + CONVERT(VARCHAR,periodMonth) + '-01' > DATEADD(MONTH,-12,GETDATE()) THEN periodDollars ELSE 0 END AS ytdDollars
    FROM @forumTable

  • Year to Date and Monthly totals

    I know that this is rather simplistic, but I'm new to Discoverer and need to set up a bunch of sales reports with MTD and YTD columns. I'm going to be using the same SQL query for many of my reports but customizing the reports to show sales by state, product line, etc.
    Is there a formula/function I can use in Discover for the Month to Date and Year to Date totals?
    Thanks,
    Joseph

    Hi Joseph
    You can use the analytic range SUM calculation for these. For the month to date, use the a PARTITION BY of month with a range of all the preceding rows in the partition up to and including the current row. For the year, you would simply change the PARTITION BY to be the year.
    Here are some examples drawn from my own database:
    I have the following items:
    ORDER_YEAR
    ORDER_MONTH
    ORDER_DATE
    SELLING_PRICE
    With these defined, the formula for month to date is:
    SUM(Sales.Selling Price SUM) OVER (PARTITION BY ORDER_MONTH ORDER BY ORDER_DATE ASC ROWS UNBOUNDED PRECEDING)
    The formlua for year to date is:
    SUM(Selling Price SUM) OVER(PARTITION BY ORDER_YEAR  ORDER BY  ORDER_DATE ASC  ROWS  UNBOUNDED PRECEDING )
    Basically what we are doing is telling Discoverer to SUM the SELLING_PRICE, and you should be able to take these and adjust them for your own report.
    Let me take a look at the month to end and describe what is going on. Basically the PARTITION BY is defining a set of rows which are to be included. In this case it is all rows that have the same ORDER_MONTH. The ORDER BY clause tells Discoverer to place the items in order, with the oldest order first. The ROWS UNBOUNDED PRECEDING tells Discoverer to SUM all of the items within the set (within the PARTITION BY) from the oldest item (UNBOUNDED PRECEDING) to and including the current item. We could have added a BETWEEN clause too but that is implied. With a BETWEEN clause it would look like this:
    SUM(Sales.Selling Price SUM) OVER (PARTITION BY ORDER_MONTH ORDER BY ORDER_DATE ASC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)
    If you want the current row to be included with UNBOUNDED PRECEDING you don't need to explicitly name it because that is the default. Other options you could use are these:
    UNBOUNDED FOLLOWING - this SUMS to the end of the PARTITION
    ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING - you can guess that this will add all of the items, which you will rarely use because if you omit the ROWS command then this range between first and last is actually the default
    Rather than ROWS BETWEEN you can also say RANGE BETWEEN, like this:
    SUM(Sales.Selling Price SUM) OVER (PARTITION BY ORDER_MONTH ORDER BY ORDER_DATE ASC RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)
    I hope this little dissertation on running totals helps.
    Best wishes
    Michael

  • How to get total or sum year to date or date range

    Is there a way to duplicate in Numbers what I used to do with Excel's formula =DSUM(Database,"Total",Criteria) where criteria would be any date I plugged into a referenced cell to get a year to date total. Thanks! DBT

    As described in the Help which offers a list of available functions(),
    In cell B1 of Tableau 2, the formula is:
    =SUMIF(Database :: B,A,Database :: C)
    In cell B2 of Tableau 2 is an alternate formula which doesn't requires an auxiliary cell like A1
    =SUMIF(Database :: B,DATE(2008,3,3),Database :: C)
    Yvan KOENIG (from FRANCE lundi 17 novembre 2008 17:16:46)

  • Table for Year to date payments made to vendors

    Hi friends,
    I am generating one query, in which I have to show year to date payments made to vendors.
    can anyone tell me from which table and from which foield can I get this information.
    Please help.

    hi,
    GO to SE16 and select doc type wise , you will get a solution .
    i hope it helps you.
    regds,
    raman

  • Discoverer Parameters: Year to Date

    Hi guys,
    At the moment im working on a database warehousing project. I'm using discoverer as a front end for a user friendly environment. Does anyone know how i can create a parameter to show the year to date? i need to put the following condition into the paramater:
    FULL_DATE BETWEEN =add_months(sysdate,-12) AND =sysdate
    However, as im sure you'll find, you cannot use the 'BETWEEN' function when using parameters :( - Ideally i'd like the user to be able to choose between two buttons, one showing all the data and one showing year to date. I would prefer to use a parameter to do this rather than the user adding/removing conditions from worksheet.
    Thanks in advance,
    Chris.

    Hi Chris
    Take a close look at Rod's answer because you can use BETWEEN when using parameters. Rod's answer looks for the code YTD and if found uses the full year to date.
    Another solution would be to use a parameter that asks the user whether they want to see the year to date, receiving Y or N. Having got the answer you then create a suitable DECODE, like this:
    FULL_DATE BETWEEN DECODE(:YTD_QUESTION,'Y',ADD_MONTHS(SYSDATE,-12), FULL_DATE) AND SYSDATE
    This solution works when the datatype that you are checking for will not allow a user to type characters, so can be used when a date or number is being checked.
    Best wishes
    Michael

  • The old calender iOS6, in the year view, it shows how much busy I am in a day by indicating the color intensity. But the new calendar year view is totally useless!!! also too bright!! Why apple does this?? What is the way to revert the calendar back???

    The old calender iOS6, in the year view, it shows how much busy I am in a day by indicating the color intensity. But the new calendar year view is totally useless!!! also too bright!! Why apple does this?? What is the way to revert the calendar back???

    Unfortunately, that's the way the cookie crumbles nowadays. Sir Jony Ive's GUI design for iOS7 has been met with much skepticism (to say the least). But until the company sees the compelling need for an adjustment or reversal, it "ain't happenin' ". So amble over to the feedback page ( http://www.apple.com/feedback/ ) and make your displeasure known to the company, OR make it known by not purchasing its products. Because as long as the iGadgets continue selling as fast as they can make them, they will see no need for change.
    BTW, do note you are NOT talking to Apple here. This is just a user-to-user forum.
    Edit: for now, you can also try out any of the alternate calendaring apps available in the App Store.

  • HT2513 On iCal this year the date of shrove tuseday is showing on Tuesday 13 of February witch for a start is wrong coz it's a Thursday and wrong because its meant to be in march

    On iCal this year the date of shrove tuseday is showing on Tuesday 13 of February witch for a start is wrong coz it's a Thursday and wrong because its meant to be in march

    kaeandcolesmon,
    If you open the recovery drive (partition) it should only have a single folder (Recovery).
    To make sure that your not saving restore points to that drive.
    See:
    Start, Control Panel, System, System Protection tab. Make sure the D drive partition is set to OFF so that it does not save there.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • Calculation of ''Total to Date'' like ''Year to date''

    Hello together,
    How would you calculate a Total to Date in Oracle BI.
    It should sum all values like Year to date up to a certain period inclusive all previous years.
    Example:
    Year Value
    2008 10
    2009 20
    2010 40
    If I select 2009 it shoul display 30. without the previous and the following row.
    Regards,
    Stefan
    Content Level Fiscal Period TOTAL (Do I have to calculate on a yearly level all the past years, - ago - 1, ago -2, ago - 3, ago - 4 up to - 20?)
    minus Year Value
    plus YTD
    Month and Total have to bes diplayed in on line.
    works for the current year but not when you back to last year.
    Edited by: stefanhess on Jun 14, 2010 1:54 PM

    an odd solution.
    In the physical layer you can duplicate the fact table and can join the time dim and duplicated fact with the complex join using the year column with the condition as
    time_dimension.year_column >= fact_table.year_column
    in your report when you bring the year and this measure you will get what you want.
    Edited by: kart on Jun 14, 2010 6:46 PM

  • Not showing year data when we export into infoview

    Hi All,
    We had a issue with Crystal reports .We  created crystal report  through BW query .When we run in local machine it is working fine  . When we exported in the info view one of year column data is not showing  . What could be the reason behind on this ?
    Thanks
    Praveen

    Hi Praveen,
    It could be a problem with the patching on the XI3.1 server compared to the CR client machine. Have you checked that both client\server are patched to the same level?
    If CR is installed on the XI3.1 server can you test the report there, does it refresh ok?
    Have you checked that the latest SAP Transports have been imported into the BW system from the XI3.1 Service Pack\FixPack?
    If the problem is still persisting I would recommend that you log a message with SAP Support.
    I hope this is a very helpful answer to you.
    Kind regards,
    John

  • Upon transferring to the cloud, all my previous mail says the same date, except for today and yesterday.  The rest says it came in on the same date I had to replace the hard drive 3 years ago.  Totally stumped.  It didn't do this on my mac...

    Upon transferring to the cloud, all my previous mail says it entered my box on the same date, except for today and yesterday.  Everything else says it came in on the same date on which I had to replace the hard drive 3 years ago.  Totally stumped.  It didn't do this on my mac...only when I moved.  I have bad feelings about being to fix this...Any suggestions?

    Get the new keyboard at eBay and replace by yourself may be cheaper way, though you're required higher skill and well know about MacBook Air.
    http://www.ebay.com/sch/i.html?_from=R40&_trksid=p2050601.m570.l1313.TR0.TRC0.H0 .Xmacbook+air+2011+keyboard&_nkw=macbook+air+2011+keyboard&_sacat=0
    https://www.youtube.com/watch?v=gLbasVD69xo

  • Need total consumption quantity year to date for item in inventory

    Hi All,
    I have a requirement as below.
    I need to find the total consumption quantity for a item year to date in inventory i.e i need to find out total issued quantity from year to date for a item.
    so i need following details.
    Consumption 1st year
    Consumption 2nd year
    Consumption 3rd year
    we are following fiscal year JAN-DEC.
    I am looking for a query to find out the above details, please help me out
    Thanks

    Hi Prashant,
    I will try this out. If I remember correctly this did not work especially since we are using the same base condition across the board. I may have to try copying this standard condition and re-assigning it accordingly.
    Thanks for the suggestion
    Anirudh

Maybe you are looking for

  • Issues with using SV Time-Varying Loudness.vi

    Hi,   I am rather new to Labview and am having issues getting my Time-Varying Loudness calcuations to come out correctly. Attached is my current VI and a .csv file of a set of my data (calibrated in Pa. Sample rate = 50kHz for 5 seconds). When i run

  • My airport does not start when pligged in

    My aipport does not start when plugged in.  The light does not come on at all.  If there some kind of a reset switch?

  • Flex 3.5 downloadable documentation

    Hello Adobe, where could I download the 3.5 language reference as a zip file please? Thanks Tom

  • Import c++ dll from 6i

    hello, can i import a c ++ dll library from the "import OLE LIBRARY INTERFACE under the tab "Pogram" -> import OLE LIBRARY INTERFACE" in forms6i? and how to do it plz? or i have to Call it somewhere in a PLSQL trigger in my form AS External procedure

  • Set Default Standard Element Font in Designer

    Are there any configuration settings or .ini files I can edit in the Designer installation folder that will change the font selected for a standard elements when I place a new standard element from the library onto my form? I realize I could just cre