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!

Search results for query: *

  • Users: mmorala
  • Content: Threads
  • Order by date
  1. mmorala

    Table to Array

    Hi, I have a small table that I want to make into an array so that Crystal can compare the records it pulls into the report against this array. How can I convert a table into an array? and How do I iterate through the array to compare each value? Thanks, Michael
  2. mmorala

    Display if...

    Hi, I have a report that shows how many calls were turned around within 24 hours, and how many calls were turned around more than 24 hours. This information is then shown on a graph. I have 2 questions: 1. Is there a way to manipulate the graph so that it breaks it out by month? 2. If a call...
  3. mmorala

    Counting within groups

    How do you make Crystal count only within a group? I've separated my data into a customer number group, then within that, I have another group of customer reps. How do I count the number of reps for each customer? Thanks, Michael
  4. mmorala

    Distinct count...but not really

    Hi, I have a pretty complicated problem. I want to count calls made by a call center. They can have 3 outcomes: Completed, Left Message, and No Answer. I want to count calls made to specific customers and track the outcomes, but no more than 3. For example, a rep calls customer XYZ 11 times...
  5. mmorala

    DateAdd function returning wrong dates!

    I have a DateAdd function that looks like this: if {ACTIVITY.STARTDATE} > DateAdd(&quot;d&quot;,-1,{?Date}) and {ACTIVITY.STARTDATE} < DateAdd(&quot;d&quot;,15,{?Date}) and {ACTIVITY.CATEGORY} = &quot;Call Report&quot; then 1 else 0 When I run the report and use the date...
  6. mmorala

    Printing Detail Lines

    I have two detail sections, a & b. The way it prints now is a/b, a/b, a/b...all the way to the end. Is there a way to print all of a, then all of b, keeping all of a together and all of b together? Thanks, Michael
  7. mmorala

    Need help with an update statement

    I have two tables, ACCOUNT & USERINFO. They are linked by ACCOUNT.ACCOUNTMANAGERID & USERINFO.USERID. I am trying to replace blank fields in ACCOUNT.CATEGORY with &quot;Call Report&quot; where USERINFO.TITLE = 'Manufacturers Rep'. How can I do this? Thanks, Michael
  8. mmorala

    Calculating hourly difference

    Hi, I am trying to calculate the time between two fields in a ticket database, [RECEIVEDDATE] and [COMPLETEDDATE]. This is my formula: Local DateTimeVar d1 := {TICKET.RECEIVEDDATE}; Local DateTimeVar d2 := {TICKET.COMPLETEDDATE}; DateDiff (&quot;h&quot;, d1, d2) - DateDiff (&quot;ww&quot...
  9. mmorala

    Create chart based on formula fields

    I'm new to Crystal reports. Is it possible to create a chart based on formula fields? I have a database of account names which I then used formulas to count each account name starting with A's, B's, and so on. I want to show the number of accounts that start with A, B, etc. on a bar graph...

Part and Inventory Search

Back
Top