Line Chart report issue in BAM

Hi,
I have a view from my database on Daily Sales.
I tried to make a line chart report.I had the data object & plan created and run.
I am facing some issues while making out:
1)In Line chart it looks like "Summary Function" in chart is must.
2)All the data values are overlapping on axis lines as well as chart area.
Dont know how to get rid of this Summary function etc, i want lines to be drawn s per the records in the view.

Use count as summery function, count the unique value in your record

Similar Messages

  • What is the best way to create a SSRS 2005 Line Chart Report for a 12 month period?

    I'm looking for advice on how to create a SQL Server 2005 query and line chart report for SSRS 2005.
    I need to display the peak number of patients assigned to a medical practice each month for a 12 month period based on the end-user selecting a
    single month and year.
    I've previously created a report that displays all patients assigned to the practice for any single month but I’m looking for advice on how to
    how to produce a resultset that shows the peak number of patients each month for a 12 month period. I thought about creating a query that returns the peak count for each month (based on my previously created report which displays all patients assigned to the
    practice for any single month) and then use a UNION statement to join all 12 months but I'm sure that isn't the most efficient way to do this. The other challenge with this approach (twelve resultsets combined via a UNION) is that the end-user needs to be
    able to select any month and year for the parameter and the report needs to display the 12 month period based on the month selected (the month selected would be the last month of the 12 month period).
    For the report I’ve previously created that displays all patients assigned to the practice for any single month, the WHERE statement filters the
    resultset on two fields:
    Start Date - The date the patient was assigned to the practice. This field is never null or blank.
    End Date - The date the patient left the practice. This field can be null or blank as active patients assigned to the practice do not have an End Date. When the patient
    leaves the practice, the date the patient left is populated in this field.
    Using these two fields I can return all patients assigned to the practice during Nov 2012 by looking for patients that meet the following criteria:
    start date prior to 11/30/2012 (using the last day of the month selected ensures patients added mid-month would be included)
    AND
    end date is null or blank (indicates the patient is active) OR the end date is between 11/1/2012 -11/30/2012 (returns patients that leave during the month
    selected)
    Regarding the query I need to create for the report that displays the peak count each month for 12 months, I'm looking for advice on
    how to count patients for each month the patient is assigned to the practice if the patient has been assigned for several months (which applies to most patients). Examples are:
    John Doe has a start date of 6/01/2012 and an End Date of 10/07/2012
    Sally Doe has a start date of 8/4/2012 and no End Date (the patient is still active)
    Jimmy Doe has a  start of 7/3/2012 and an End Date of 9/2/2012
    Given these examples how would I include John Doe in the peak monthly count each month for May - October, Sally Doe in the peak monthly count for
    August - December and Jimmy Doe in the peak monthly count for July – Sept if the end-user running the report selected December 2012 as the parameter?
    Given the example above and the fact I'm creating a line chart I think the best way to create this report would be a resultset that looks like
    this:
    Patient Name              
    Months Assigned
    John Doe
    June 2012
    John Doe                     
    July012
    John Doe                     
    Aug 2012
    John Doe                     
    Sept 2012
    John Doe
    Oct 2012
    Sally Doe                     
    Aug 2012
    Sally Doe                     
    Sept 2012
    Sally Doe
    Oct 2012
    Sally Doe                     
    Nov 2012
    Sally Doe
    Dec 2012
    Jimmy Doe                  
    July 2012
    Jimmy Doe
    Aug 2012
    Jimmy Doe
    Sept 2012
    From the resultset above I could create another resultset that would count\group on month and year to return the peak count for each month:
    June 2012 - 1
    July 2012 – 2
    Aug 2012 - 3
    Sept 2012 - 3
    Oct 2012 - 2
    Nov 2012 - 1
    Dec 2012 - 1
    The resultset that displays the peak count for each month would be used to create the line chart (month would be the X axis and the count would
    be the y axis).
    Does this sound like the best approach?
    If so, any advice on how to create the resultset that lists each patient and each month they were assigned to the practice would be greatly appreciated.
    I do not have permissions to create SPs or Functions within the database but I can create temp tables.
    I know how to create the peak monthly count query (derived from the query that lists each patient and month assigned) as well as the line chart.
    Any advice or help is greatly appreciated.

    Thanks for the replies. I reviewed them shortly after they were submitted but I'm also working on other projects at the same time (hence the delayed reply).
    Building a time table and doing a cross join to my original resultset gave me the desired resultset of the months assigned between dates. What I can't figure out now is how to filter months I don't want. 
    Doing a cross  join between my original resultset that had two dates:
    08/27/2010
    10/24/2011
    and a calendar table that has 24 rows (each month for a two year period)
    my new resultset looks like this:
    I need to filter the rows in yellow as the months assigned for stage 3 that started on 8/27/2010 should stop when the patient was assigned to stage 4 on 10/24/2011.
    You'll notice that Jan - Sept 2011 isn't listed for Stage 4 assigned on 10/24/2011 as I included a filter in the WHERE clause that states
    the Months Assigned value must be greater than or equal to the date assigned value.
    Any advice would be appreciated.

  • Putting Category Counts in a Tool Tip on a Line Chart -SQL Server 2008 R2

    I have a line chart report that shows the total number of tickets processed each month. Within the same recordset is the data of who processed the ticket.  So I want to add in the ToolTip on the Datapoints the number of tickets processed  by each
    persion.  There are just a few people.
    So the line chart will have a datapoint at 20, but Joe did 5 and Jim did 15. What expression would I put in the tooltip? I even added datavalues for the Names and hid the data on the chart.  I am just not sure how to reference or write the expression
    that says  joe has 5 and jim has 15 in the ToolTip.  Then I would want an "Other" with all Rogues not Jim or Joe.
    Example of Data
    Ticket #  DATE_REPORTED  ASSIGNEE_FULL_NAME
    1  2013-01-16 08:31:28.000  Joe
    2  2013-01-17 07:01:23.000  Jim
    3  2013-02-04 17:42:23.000   Jim
    4  2013-02-04 18:42:23.000   Bill
    Thanks in advance.
    DBA Developer

    Hi Paul,
    As per my understanding, if we want to display some detail information depend on one field, we should add a group on that filed ahead. In your scenario, we should add a Category group or Series group in the chart, then write an expression to display the
    detail information. While, if we additional add a group in the chart, the chart would showed with other manners. It will be different from the original chart. So, I think we cannot directly achieve the goal at the moment.
    As a workaround, I suggest we can create another report to only display the detail information, then add a drill through action in the main report to jump to that report when we click the line. For more details, please refer to the following steps:
    Drag a Line Chart on the design surface of the new report.
    Insert [Count(Ticket__)] in the Values pane.
    Insert the expression below as the Category Group Label expression and Group expression:
    =format(Fields!DATE_REPORTED.Value,"MM")
    Insert the expression below as the Series Group Label expression and Group expression:
    =iif(Fields!ASSIGNEE_FULL_NAME.Value="Joe",Fields!ASSIGNEE_FULL_NAME.Value,iif(Fields!ASSIGNEE_FULL_NAME.Value="Jim",Fields!ASSIGNEE_FULL_NAME.Value,"Others"))
    In the main report, right-click the line to open Series Properties dialog box.
    Click Action in the left pane, enable Go to Report, then specify the new report name in the drop-down report.
    If we want to see the detail information, we can click the line in the main report, it navigates to the new report. Then we can click “Back to Parent Report” action to return to the main report.
    Hope this helps.
    Regards,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • How to add label on different line in Line Chart

    I have a line chart report. There are 4 columns shown in Y-axis. (that means 4 lines totally).
    If those reports are printed by black/white printer, user will confuse those lines belong to which column.
    Could any person give me some advices?
    Thanks
    Edited by: user9220113 on May 3, 2010 1:36 PM

    Hi ,
    Do the following.
    Remove accruals tick first.
    Changes in pricing procedure.
    Put 6 in the subtotal of freight condition (create saperate condition)
    Changes in Tax procedure.
    Assign 362 under BASTYP for BASB condition type.
    Assign 363 under BASTYP for BASB For ED condition type.
    Now check the scenario.
    regards,
    sujit

  • SSRS 2008 Line Chart Issue.

    We are facing an issue with SSRS 2008 charts. We have a report which shows dynamic number of series on a line chart. The data values may not exist for all series for
    the same x axis points. We expected SSRS to connect the missing points as average and have set the empty point option to average.
    The issue is that the
    1)     
    lines for interpolated points only appear when we set the color of empty point to say red and not when it is set to automatic. We need the interpolated line in the same auto
    colour as the original line as we will have markers for the data points from the DB and no markers for empty points.
    2)     
    The interpolated lines extend backwards in the series also – we expect it to only fill the gaps and not extend backward or forward.
    Are these issues known and is there a work around for these issues ? We got your name from one of the SSRS community discussions. Could you please connect us with
    the right person if you are not the right contact for this issue ?
    I also got following reply from one of the MS guy, it says
    Hi Akshay,
    The lines should not go backward.  I have seen this happen before and I’ll have to double-check on what that occurs. If you
    are using a Category Axis, make sure you set the sorting to use a Cdate() expression.  I think that might be it ,but I’ll have to double check.
    As far as using the auto-coloring on the series when you have empty points like this, I don’t think that’s possible.  It would require
    a DCR.  You may need to implement something along the lines described in this article  http://msdn.microsoft.com/en-us/library/aa964128(SQL.90).aspx.
    When I tried the suggestions I over come the auto colouring issue and also used CDATE () but lines still extend bacawords. Can anyone suggest what to do it this situation

    Hi AKshay_Jadhav,
    Firstly, I am not sure who is that MS guy you mentioned without the detail name. Based on my understanding to your issue, I think you could utilize the function
    IsNothing in reoprting services to have a check whether the value is null, if it is Null, you should give a average value to this point, if not leave it to be the original value. Of course, you could achieve this in T-SQL. To
    the color and marker, we could type in the expression in both feature to control their display effort.
    Hope this helps.
    Thanks,
    Challen Fu
    Challen Fu [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • HFR_ Line chart Issue.

    Hi,
    We have a Line chart in Fr rpt......There are 12 months in cols(X axis)........and accounts in rows(Y axis)...
    We have data from Jan to Aug........In the chart the lines abruptly falls down from Aug and shows data as 0 from aug to dec.....
    How can we just show the lines in chart ONLY where there is data.......It should not fall down where there data doesn't exist.

    Hi
    I have always had a similar issue and unfortunately never managed to resolve it. Frustratingly it is not the same in Web Analysis so you would think that Oracle could make such a change but I think unfortunately that they are unlikely to.
    I have tried various things, setting to #Missing, #Error and I seem to remember that neither worked. Have you tried suppressing the data columns, can't remember if that did stop the line dropping off but would mean that at times your report may only have 1 or 2 data points.
    The last time i tried all this was v11.1.1.3 so let us know how you get on.
    Regards
    Stuart

  • FR Line Chart Issue

    We have a line chart in FR report.
    The data in the grid is shown in millions.......the chart gets the data from this grid.
    When the FR report is opened in pdf format the chart is coming-up in millions..
    but when its opened in html it shows the chart in Unmillions data (-:))..........
    The chart display is different in pdf(millions) n html(Unmillions )views
    how can we fix it

    Hi
    There are lots of issues with FR charting to be honest it is nowhere near as 'complete' as charting in Web Analysis for example. I pushed FR to and in some cases beyond its limits on a project a year or so ago but I don't remember this being an issue.
    Its a bit hazy now but I thought the chart took its formatting from the grid or there may be formatting options in the format chart dialog box. We tended to only view only in PDF as we were creating books for expor and email rather than online consumption so I suppose were less likely to see the issue.
    Regards
    Stuart

  • Crystal report -How to display multiple lines in line chart?

    Hi,
    M struggling to display multiple lines in line chart. All the values m fetching it from database into data table in below format & data type
    Category(String).....year(Int).....graph_values(Int).....table_value(String)
    Test.........................2006.......... -100............................(100)
    Avg..........................2006..........20................................20
    Median......................2006...........5................................5
    Test..........................2007...........500.............................500
    Avg...........................2007............90..............................90
    Median.......................2007............45..............................45
    M using cross tab to display data and chart to plot line. Following fields I used in Cross tab Expert & Chart expert
    Cross tab expert-
    Rows u2013 category
    Columns u2013 year
    Summarized fields u2013 Min of table_value
    In Chart Expert u2013
    On Change of - Year
    Show values - graph values
    In cross tab m able to see the data properly but not in graph.I have three categories. Hence it should plot three lines in line chart but m able to see only one line for test category.
    FYI u2013 using VS 2008 and crystal report assembly version 10.5
    Urgent. Please reply soon.
    Thanks
    ThakurS

    I got the solution.
    In Chart Expert - I should use
    On Change of -- Year, Category
    Show values -- graph values
    Thanks,
    ThakurS

  • SSRS 2008 R2 Line Chart Issue

    Hi, 
    Problem:
    I have an issue of SSRS Line Chart extending backward and forward (same issue discussed in post - http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/3cebd5b2-bb15-4bd1-be16-0daadc613082/)
    when Empty point option Value is set Average 
    I tried sorting on Category Group as suggested by Sean Boon in the URL mentioned above. But, still the issue is not fixed. 
    I am using SSRS R2. 
    Thoughts ?

    Hi, 
    Problem:
    I have an issue of SSRS Line Chart extending backward and forward (same issue discussed in post - http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/3cebd5b2-bb15-4bd1-be16-0daadc613082/)
    when Empty point option Value is set Average 
    I tried sorting on Category Group as suggested by Sean Boon in the URL mentioned above. But, still the issue is not fixed. 
    I am using SSRS R2. 
    Thoughts ?
    I am running into the same issue again :( 

  • Crystal reports in jsp ,the Line chart 's line can't display in jsp?

    that is example crystal-reports-10 for Jbuild 2005,
    I just modify such in viewreport.jsp:
    <crviewer:viewer displayToolbarRefreshButton="true" isOwnPage="true" displayToolbarCrystalLogo="false" displayToolbar="true" displayToolbarExportButton="true"
    displayToolbarPrintButton="true" displayGroupTree="false" viewerName="worldsales" reportSourceType="reportingComponent" reportSourceVar="<%= path %>"><crviewer:report reportName="<%= path %>"/></crviewer:viewer>
    it can't display a Line chart rpt's line and background's picture, and when I press refresh button report a Error "Error finding JNDI name (yhgl)"
    help!!

    The jars should be in your installed Crystal Reports folder( \Crystal Decisions\..\java\lib or something like that...). The problem is that your server (Tomcat and others) ignores the system classpath completely (it sets its own in its startup script).
    Therefore, in order for Tomcat to find the jars, those jars have to be placed in in %CATALINA_HOME%\common\lib\. There, they will be available for all your applications. If you don't want them available globally, put them in your particular webapp's WEB-INF\lib directory.

  • Financial Reporting Line Chart - disable #missing or #zero values

    I need some help regarding the line chart in financial reporting. I want to create a line chart for actual and forecast-values. The underlying Grid contains following values:
    actual-jan = 100
    actual-feb = 121
    actual-march = 119
    actual-april to actual-dec = #missing
    forecast-jan = 100
    forecast-feb = 121
    forecast-march = 119
    forecast-april to forecast-dec = 125
    In the line chart I get two lines, one for actual and one for forecast. Now my Problem is that the actual line has to stop with the march-value but it moves forward till december on the zero level.
    Has anyone an idea how to get the line stopped at march?
    kind regards
    kai

    Supressing or replacing zeroes does not help, the chart still drops to zero for future periods.
    I created an extra column in my grid. In this column i used a formula that says if column a (current year) is greater than zero, show column a numbers, if not, show the number from the row above. I have separate reports for debits and credits, if you are OK with showing negative numbers, just adjust the formula. What my new column does is forecasts a straight line for all future periods for the current year. It is not the exact preferred result, but it keeps the scale appropriate and with a little education almost every executive has accepted it.

  • Crystal Reports - Change Line Chart Color Dynamically

    Hello,
    I have Crystal report 14.
    I'm trying to create a line chart and need to be able to set the colors of the lines at the time the report is run.   The colors the lines need to be are specified in a database and a different color could be specified each time the report is run. 
    Can anybody suggest how I would do this?
    Thanks
    Edited by: Robert4543 on Nov 16, 2011 5:23 PM

    I've tried to use 'Color Highlight'  to change the color of the lines, but it only changed the colors of the markers on the line, not the actual line itself.  Is there a way to get it to change the color of the line? 
    I may have one line I need to display as 1 color, and a 2nd that I need to display as another.  Using color highlight changed the markers for both lines to the same color.  Is there a way to specify which line I want to change the color of in "Color Highlight"?
    Thanks.
    Edited by: Robert4543 on Nov 16, 2011 8:41 PM

  • Report Development issue: I have queryy of 1600  line but report builder

    Report Development issue: I have queryy of 1600 line but report builder 1320 lines . But i m can't create views becasue many parameters are used in it please give solution how can i paste 1600 line in report bulder.

    you would have to build a dynamic statements that will make up your query.
    e.g.
    select &column
      from &from_clause
    where &where_clause;where:
    column is a user parameter that makes up of columns
    from_clause is a user parameter that makes up of tables involves
    where_clause is a user parameter that makes up of condition statements
    and the above parameters can be defined on the report triggers AFTER PARAMETER FORM.

  • SSRS 2008: Line chart Y-Axis scale issue

    Hi All,
    After search of one week, finally decided to put my question in front of you all. Hope I will get some outcome from it.
    Currently I am working on Line Chart. Following is the data which I need to bind to line chart.
        JobStartDate  JobStartTime   JobEndTime
        1/1/2015       01.00            02.30
        1/2/2015       01.02            03.20
        1/3/2015       01.01            03.40
        1/4/2015       01.05            02.00
        1/5/2015       22.03            23.30
        1/6/2015       22.05            23.40
    So, In above scenario Line chart looks like:
          11.00 PM |                          /////////               
          10.00 PM |                          ..........        
          ........ |                                              
          04.00 AM |              /                         
          03.00 AM |    /  /                                     
          02.00 AM |  /                /                       
          01.00 AM |  .....................                                               
          12.00 AM |______________________________________________                                         
                   1/1/15 1/2/15 1/3/15 1/4/15 1/5/15 1/6/15        
    But it should be like :
          04.00 AM |                /                         
          03.00 AM |       /  /                                     
          02.00 AM |    /                /                       
          01.00 AM |     .....................                                               
          12.00 AM |
          11.00 PM |                                      
          10.00 PM |                                         
          09.00 PM |______________________________________________                                         
                        1/1/15 1/2/15 1/3/15 1/4/15 1/5/15 1/6/15    
    (Sorry As cant upload the image. So, Tried to show as above.)
    In above figure (.) is StartTime and (/) is EndTime.
    You can see that I am facing the problem of Y-Axis scaling.
    Hope everyone understand my problem. Please let me know more explanation.

    Hi Prashant Khadatkar,
    As per my understanding, you created a line chart, you added JobStartTime and JobEndTime to values area, and added JobStartDate to category groups. You want to display data of y axis from PM to AM. In order to improve the efficiency of troubleshooting, I
    need to ask several questions:
    What’s the data type of JobStartTime and JobEndTime?
    Is the data stored in database the same as you provided?
    What’s the state of report now? Please provide some more detailed information of the report. I would be appreciated it if you could provide sample data and screenshot of the report.
    This may be a lot of information to ask for at one time. However, by collecting this information now, it will help us move more quickly toward a solution.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • Issues with Line Chart

    APEX 4
    Anychart 5
    If I create a new chart region, specify a 2D Line chart, and format my query everything seems to work well. If I add a new data series the chart becomes a 2D Column Chart. I simply want two lines graphed. Once the chart is displayed as a column chart, I cannot get it to display as a Line again unless I delete the object and reconstruct it. I have tried changing it to a 2D column, 2D bar, 3d bar, etc and then change it back to a 2D Line chart and it will only display as a column chart. Anybody else seen this behavior? Anybody got an explination?

    Hi Austin,
    The default setting of the "Series Type" value to correspond with the selected Chart Type, in your case a Line chart, has been resolved as part of a fix for bug 10205497. The fix will be available in our upcoming 4.0.2 patch release. Thanks for bringing this issue to our attention.
    Regards,
    Hilary

Maybe you are looking for

  • Oracle 10g RAC: misscount value

    Hi, On an Oracle 10g R2 RAC environment for Linux 4.5, I noticed that misscount value returned by crsctl is different from its value in $CRS_HOME/install/rootconfig. Is that acceptable? By the way, misscount value had been modified manually by the DB

  • Can't get video into iphone

    Ok so i have a video i made on ilife 08. I exported for ipod. I then click on the very short movie in itunes and click convert to iphone. It converted but it doesn't show up on the list to select to put on my iphone. I have tried to click the actual

  • SharePont 2013 Document Library lookup Column Properties not Showing Correctly when editing in Word

    Hi I keep seeing this issue albeit intermittently.  I have set up a doc library for my users which has a custom content type (lookup, metadata columns, etc)  . They all appear perfectly most of the time except the lookup column. Sometimes is just dec

  • "HAVING NOT LIKE" isn't working

    When I wanted to sum the value of all inputted device data except one type I had to put this... SELECT AttributeName, DateAdd(minute,-5,System.TimeStamp) as WinStartTime, system.TimeStamp as WinEndTime, DeviceId, Avg(Value) as Value, Count(*) as Even

  • Cluster build waveform t0 timestamp waveform graph

    Hello I would expect both examples in the picture to behave the same way. Why aren't the signals in the upper example shifted to the right? Regards Stefan Attachments: problem.png ‏24 KB