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 gkittelson 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. lisanguyen

    Not possible to use a Shared NumberVar from Surbreport in a chart in m

    Shared variables evaluate too late to be used in your situation. You can sneak around this by creating another subreport (which will be used to chart on) and then pass the shared variables into this chart using the subreport links but unlinked to any fields. If you have more than one valule...
  2. lisanguyen

    Converting Decimal to Time

    Hi, What you want to do is divide by 60. The whole number you get will be your hours and the remainder will be your minutes. Based on the example you provided, your formula could look like this: numbervar x := .75; numbervar hh := truncate(x * 100/ 60); numbervar mm := remainder(x *...
  3. lisanguyen

    Crystal Reports into Crystal Enterprise

    Start > Settings > Control Panel > Regional Options > Numbers Tab. Check to see if what you have set here is different on the two machines.
  4. lisanguyen

    Extracting a Unique Record

    nice solution lbass =)
  5. lisanguyen

    Wildcard in Record Selection option

    Hi, The formula rhinok gave you should work Here's a shorter way of writing it: {PayPeriodEndDate} = {?Pay Period End Date} and ( {CommunityID} In {?CommunityID} or {?CommunityID} = 'All' ) What happens when you comment out the Pay Period criteria, does your report return anything? Is...
  6. lisanguyen

    print subreport's own report header

    Hi, Subreports don't have page headers but you can fake this look but creating a group and using the Repeat Group Header on each page option. Here's the kbase http://support.businessobjects.com/library/kbase/articles/c2005103.asp
  7. lisanguyen

    add 2years

    Hi, You can use the dateadd function DateAdd("yyyy", 1, printdate)
  8. lisanguyen

    Version 10: Not showing all the queries in an Access DB?

    Hi, Does your query have parameters? Crystal Reports sees parametized queries as Stored Procedures.
  9. lisanguyen

    Changing Field Types

    Hi, If it is available to you, you can use a SQL Expression to convert your number to text and this will do the conversion server side before the number will get to Crystal. But have you checked if the number is just formatted to no decimal places? Have you tried changing the rounding and the...
  10. lisanguyen

    Crystal Reports into Crystal Enterprise

    Hi, Sounds like the Regional Options for numbers are set differently on the machine you have Crystal Reports and the machine you have Crystal Enterprise. You may have to change the regional options so they are the same on both machines. What you have to watch out for is that this will affect...
  11. lisanguyen

    Can I get the SQL statement that CR uses?

    Hi, You can run an ODBC trace to see the SQL statement that is getting passed to your database. Go to Start > Settings > Control Panel > Administrative Tools > Data Sources ODBC > Tracing Tab
  12. lisanguyen

    Extracting a Unique Record

    I would create a variable and assign this variable the value of your datefield if that date is greater than today. But I would only do this once. Step 1: Group on the person Step 2: Create your declaration formula that goes in the Group Header WhilePrintingRecords; Numbervar Counter; Datevar...

Part and Inventory Search

Back
Top