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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. fishymetrics

    Excel 2013 What is the substitute for 2003 Tmplwiz Database add-in?

    I have a database created in Excel 2003 using tmplwiz to update the database from .xls files sent to me each month. Company is updating everyone to excel 2013. It is my understanding that it won't work anymore, MS support has no help. Am I stuck changing over to Access?
  2. fishymetrics

    display dates with no data using excel DATE table with left outer join

    oh , i need to correct something. the sql that CR creates DOES change. It drops the WHERE "xca_mstr"."xca_nbr" LIKE 'ca%'
  3. fishymetrics

    display dates with no data using excel DATE table with left outer join

    sorry for the delayed response, I was fishing the problem was that the Left Outer join stopped working when I added the selection criteria <{xca_mstr.xca_nbr} startswith "ca"> on the "Righthand" table "xca_mstr". I think I had wrestled with this before and I was having a "senior moment" last...
  4. fishymetrics

    display dates with no data using excel DATE table with left outer join

    I have read many posts and faqs regarding the dilema of displaying continuous calendar dates even when there is no data returned. I'm trying to work it out in a test report. Using Cr10 My excel table has dates from 1/1/1999 to 12/31/2025 I linked, using LO join, the date to a "close date"...
  5. fishymetrics

    Chart function - making a value always be the same colour

    Thanks lbass I'm using 10. Didn't realize 11 has added functions to Chart Expert. Just looked at it on another computer. Guess I have to start using 11 sooner rather than never. sdzlkds, In 10, I have seen the problem you describe when you have multiple Show values. You might try the new Chart...
  6. fishymetrics

    Chart function - making a value always be the same colour

    what are @Chart, @Daily...., and @Yesterday? What groups do you have?
  7. fishymetrics

    Chart function - making a value always be the same colour

    in Chart Expert, use Order by Specified Order instead of Ascending
  8. fishymetrics

    Distinct Count of Days

    Within and including 10th 11th 12th would equal 3 days" @Days {your endDate} - {your startdate}
  9. fishymetrics

    Distinct Count of Days

    Do you mean you need the number of days within the range for which you have data?
  10. fishymetrics

    How to Calculate % of Calls Completed

    hmmmm....? never noticed that before... it appears that it truncates the decimal and does not round up. can't change the formatting for decimals on the %.
  11. fishymetrics

    How to Calculate % of Calls Completed

    yes. Try adding a decimal place to the percentage...formatting...
  12. fishymetrics

    How to Calculate % of Calls Completed

    create a formula for duration and status //@Duration {complete_date} - {open_date} //@status if isnull({complete_date}) then "Still Open" else "Complete" make a crosstab with @status columns and @duration in rows Summarized Fields: Count of {open_date} Percentage of total count of...
  13. fishymetrics

    YTD of Two Years... CROSSTABS???

    For a CrossTab with months across and grouped employee data labeled by year down the left.. assuming you have a group on date by year make a formula to put on left of crosstab //@Year_Employee_Group //this splits and labels the data by year and employeename //add as many years as necessary If...
  14. fishymetrics

    YTD of Two Years... CROSSTABS???

    I had a similar report request. I took an existing report and added a ?YTD_Month number parameter with default values 1 thru 12. Then add to record selection... {table.date} = {?Date_Range} and month(table.date}) <= {?YTD_Month} the user selects the month number they want the data thru...
  15. fishymetrics

    Running Reports for last 90 days

    sending a Star to fisheromacse. This is essentially a function for LastFull3Months. You got me looking at Crystal Help and I can see lots of ways to use the DateSerial function now. Thanks
  16. fishymetrics

    Using Parametres to exclude data froma select

    You could make an "ALL" default for ?Customer and a "NONE" default for ?Exclude_Customer and then they could choose All, include some,or only exclude some. ({CUSTOMER_SITES.SITE_CUST_ID} = {?Customer} or {?Customer} = "ALL") and ({CUSTOMER_SITES.SITE_CUST_ID} <> {?Exclude_Customer} or...
  17. fishymetrics

    update to Array help FAQ

    thread767-474541 the Array pdf is now found at http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/50477290-db1d-2b10-ce9c-a1b38197b8cb?QuickLink=index&overridelayout=true
  18. fishymetrics

    Problem exporting report to excel

    Actually, I make "excel dump" crystal reports specifically to get data for people who refuse to use formatted reports in crystal. They don't have to be readable in crystal, just details in one horizontal line and a page header.
  19. fishymetrics

    Problem exporting report to excel

    It appears to read from top down, across from left to right so if you have a field that is lower than the others, it will be skipped and end up on the far right
  20. fishymetrics

    Problem exporting report to excel

    Make sure they are Aligned horizontally too. select ALL section objects-> right click on the left most detail field>Align>tops

Part and Inventory Search

Back
Top