Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by szed

  1. szed

    Custom colors on chart - legend not working

    SSRS 2005 Oracle 10.0 db We have a report that is showing a bar chart that we added custom colors to. It has a category and series group, and when the first bar on the X axis does not have data for all the series, that color for that value does not show in the legend. The label shows in the...
  2. szed

    Access vs. MySql database

    CR 10 We are trying to come up with a temporary reporting solution and have two options for our database, Ms Access or Mysql. This solution would need to work with both Crystal Reports and be deliverable in Crystal Enterprise, as well as MS SQL Server Reporting Services. I know that the Access...
  3. szed

    New to SQL Reporting/BIDS

    I have finally found a solution after many trials and errors, at least for the oracle connection, I wanted to post it in case it would benefit anyone else. I set the data source as Oracle, put in my connection, then on the datasheet window I put the following in the query window...
  4. szed

    New to SQL Reporting/BIDS

    Thanks but it didn't work, same error. All the microsoft documentation says that this is supported but I have yet to see an example.
  5. szed

    New to SQL Reporting/BIDS

    I am getting the following error: An error occured while retrieving the parameters in the query. ORA-00911:invalid character ORA-06512: at "SYS.DBMS_UTILITY",line 114 ORA-06512: at line 1 I have selected stored procedure and typed the following in the command query: STOREDPROCNAME('01-NOV-08')...
  6. szed

    New to SQL Reporting/BIDS

    SQL Server Business Intelligence Studio 8 Oracle 10 Informix I am a current Crystal user who is getting moved to Sql server reporting. I am testing a few things and having issues connecting to my existing stored procedures that are behind my current Crystal reports. I have some stored...
  7. szed

    Dual Axis chart showing Time and percentages

    I am using CR10 with a spreadsheet for the data. My issue is that I am trying to create a dual Y axis chart showing a time field on the left and a % field on the right. I cannot get the time side to work correctly with the chart. The field is pulling in as a date/time and when I add it to...
  8. szed

    Format time to show 2 places

    Thanks so much lbass!!! I knew it had to be simple.
  9. szed

    Format time to show 2 places

    CR10 Excel spreadsheet as the data source I have a cross tab that I have the following code converting a time value to HH:MM: NumberVar totalmins := ({'CIO_Data_'.MEAN} * 60); NumberVar dys := totalmins \ 1440; NumberVar hrs := (totalmins mod 1440)\ 60; numbervar totalhours := hrs + (dys *...
  10. szed

    Cross Tab and pictures if possible

    Thanks a lot Ken!! I used that logic and found arrow symbols in wingdings listed on the web, from there I got the numeric codes, then I used the following code: @Arrowfield if {'CIO_Data_'.FLAG} = 0 then "<font face='Symbol' color=yellow>&#222</font>" else if {'CIO_Data_'.FLAG} = 1 then "<font...
  11. szed

    Cross Tab and pictures if possible

    I am using CR10 & excel. I have a report that works easily with a cross tab except for one field. They want an indicator, which is an up, down, or across (no change) arrow on the side. I have this stored as a numerical value in the spreadsheet, 0 = no change, 1=up arrow, and 2 = down arrow...
  12. szed

    Dynamic images

    I am using CR10 Oracle 9. The report I am creating is displaying some charts that were created in another application and they are giving them to me in .jpg format. Is there anyway to link this into the report dynamically so that every month when they update the .jpg it will refresh in my...
  13. szed

    Formula different in Oracle 8 vs. Oracle 10

    No, it wasn't, that fixed it! Thanks a lot lbass!!!
  14. szed

    Formula different in Oracle 8 vs. Oracle 10

    I am using oracle 8 and crystal 10. I have the following code in a formula: @description: if {fieldname} like "*>Actions to Avoid Further Outages*" then replace({fieldname},">Actions to Avoid Further Outages", "</br><B>Actions to Avoid Further Outages</B>") else {fieldname}; This worked fine to...
  15. szed

    Standard deviation and charting

    I am using CR10 with an oracle 9 database. I was just tasked with calculating the standard deviation of total resolution time for closed tickets in our system. From there I need to calculate the mean, plot both of those on a chart and then show the monthly average. I know crystal has the...

Part and Inventory Search

Back
Top