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 John Tel 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 susanna123

  1. susanna123

    Question about dates

    Hi the formulas works and it's similar to what you did. However the problem is that, it's returning too much data and not within the range. Would you be able to find out what's wrong with the formula? Thanks.
  2. susanna123

    Question about dates

    Original DateRange formula: //WhilePrintingRecords ; Global DateVar Range DateRange ; DateRange:= (if {?Date Range} = "Last 7 Days" then CurrentDate-7 to CurrentDate else if {?Date Range} = "Last 30 Days" then CurrentDate-30 to CurrentDate else if {?Date Range} = "Last...
  3. susanna123

    rounding time in crystal report

    Attempting to round time to 2 decimal places. The result of formula gives value: (58:59 when rounding to 2 decimal places, but when rounding to 4 - 57:59, the value is correct) Formula is: totext(abs({procRptIndProdUserModuleTime;1.TotalTime} / 3600),"00") & ":" &...
  4. susanna123

    suppressing blank columns

    column 2 row 2 contains 2 values that have a formula that looks like this: first value {@A}+{@B} second value: {@C}+{@D}+{@E}
  5. susanna123

    report questions

    i have a crystal report that will run on a scheduled basis. The crystal report contains a box that is editable field. The instance will be in the format of a pdf file and will be emailed.Once emailed, can the pdf be opened and can user edit the field and type in the editable field box? Also is...
  6. susanna123

    suppressing blank columns

    Hi Ian Thanks. What if column 2 has different formulas already on it. Column 2 row 1 is headings Column 2 row 2 is values using diffrent formula Column 2 row 3 is values using different formula Would the above formula you provided change?
  7. susanna123

    suppressing blank columns

    how would the formula look like?
  8. susanna123

    suppressing blank columns

    I have a report that looks like a chart but it is created using lines and boxes. There are 3 columns and 3 rows looks something like this. It suppose to look almost like a crosstab but it is not. There is data in column 2. Column 1 and Column 3 have calculatoins that are based on Column 2 so...
  9. susanna123

    conditional double page breaking

    do i need to enter x+1 in the formula/selection criteria?
  10. susanna123

    conditional double page breaking

    Hi I would like to know how to create a conditional double page breaking in crystal report thank you
  11. susanna123

    parsing strings

    Thanks LB that work perfectly
  12. susanna123

    parsing strings

    when running the report: the error is produced: stringvar array z := split(y[2],"-"); a subscript must be between 1 and the size of the array
  13. susanna123

    parsing strings

    Hi LB you are right, my mistake: here is the revised formulas: 1) stringvar x:= {Objects.Address}; stringvar array y := split(x,":"); if isnull({Objects.Address}) or ubound(y) = 1 then {Objects.Address} else ( stringvar array z := split(y[2],"-"); stringvar elem1 :=""; stringvar elem2 :=""...
  14. susanna123

    parsing strings

    here are my three formulas: 1st formula: stringvar x:= {Object.Name}; stringvar array y := split(x,":"); if isnull({Object.Name}) or unbound(y) = 1 then {Object.Name} else ( stringvar array z := split(y[2],"-"); stringvar elem1 :=""; stringvar elem2 :=""; stringvar elem3 :=""; if unbound(z) >...

Part and Inventory Search

Back
Top