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 SkipVought 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: kskid
  • Order by date
  1. kskid

    Adding One Month to the CurrentDate

    dateserial(year(currentdate),month(currentdate)+1,day(currentdate))
  2. kskid

    Record Select - Nulls not showing

    Reverse the dates and specify the isnull first. {LastSold.CustomerNo} startswith "T" and (UPPERCASE(LEFT({LastSold.CustomerName}, 6)) <> 'CLOSED') and ( isnull({LastSold.DeliveryDate}) or {LastSold.DeliveryDate} in Over90Days ) and {LastSold.ItemNo} = {?Item}
  3. kskid

    Printing Question

    Try this formula if TotalPageCount = 1 then "***" else if TotalPageCount > 1 and PageNumber = 1 then "*" else if TotalPageCount > 1 and PageNumber = TotalPageCount then "***"
  4. kskid

    Aging Buckets - Days

    Try this {STATUS_TBL.STATUS}<>"CLOSED" and ( if {CASE.ROW_ADDED_DTTM}>= currentdate-3 then "0-3 Days" else if {CASE.ROW_ADDED_DTTM}in currentdate-6 to currentdate-4 then "4-6 Days" else if {CASE.ROW_ADDED_DTTM}in currentdate-9 to currentdate-7 then "7-9 Days" else ">9 Days" )
  5. kskid

    When Words Fail Us

    I will finally see the life and what a life it will be!!! After this Friday, everyday will be a Saturday.... I'll be retired!!!
  6. kskid

    Dynamic Where Statement

    What are you trying to accomplish? Changes to Crystal Report selection criteria will always generate a new sql statement that is sent to Oracle. Perhaps you should address this in the Business Objects: Crystal Reports 1 Formulas
  7. kskid

    Number of Rows in a Report

    Check the top and bottom page margins. Reducing it will allow more lines to be displayed.
  8. kskid

    Maximum Select Question

    Since you stated that employees have either 1/1/1753 or 12/31/2008, then I can safely assume that there is only one {BENEFITS} record per employee and no need for the maximum. You record select would be {BENEFITS.STOP_DATE} IN [DATE(1753,1,1), DATE(2008,12,31)]
  9. kskid

    Modified reports failing

    As Hilfy said, any changes to a report must be rescheduled. Here's how I do it. From CMC, bring up the folder and click on the Schedule tab. Select a new date for start date and click update and then click schedule. Note: If you want the job to start immediately, specify the current date as...
  10. kskid

    New Page Before

    Not knowing any specific details on what you are reporting, I would look into your suppression criteria for Group 3K and Group 3L. Apparently, there is some anamoly that is causing both to print.
  11. kskid

    Odd Filter request - filter by month exclude certain days

    Sorry about that but Monday is 2 not 1 {yourtable.datefield} in LastFullMonth and DayOfWeek({casemain.actcase_start_datetime}) <> 2
  12. kskid

    Odd Filter request - filter by month exclude certain days

    Or this {yourtable.datefield} in LastFullMonth and DayOfWeek({casemain.actcase_start_datetime}) <> 1
  13. kskid

    subreport placed in the page header does not grow

    From the Main report, go into the field explorer and create the formula. Then insert a new group and select the formula, @FakePH, to group. On the group options tab, check Repeat Group Heading on each Page. Go ahead and delete the FakePH group name from the main report Click and drag the...
  14. kskid

    subreport placed in the page header does not grow

    Try this From the main report, right click on the subreport and click on format subreport. On the common tab, uncheck Keep Object Together and Close Border on Page Break. If that doesn't work, then create a fake page header //@FakePH WhileReadingRecords; "" Create a group on @FakePH (be...
  15. kskid

    Maximum of a Maximum - CR 8.5

    You could do the following. In GH1, place formula //@Max_Init shared numbervar maxtot := 0; In GF2, place 2nd formula //@Max_check shared numbervar maxtot; if sum_of_qty_used > maxtot then maxtot := sum_of_qty_used else maxtot := maxtot In GF1, place 3rd formula to display...
  16. kskid

    Unfortunate Acronyms

    I've often wondered how much ribbing the students got when they said they attend Frankfort University of Central Kentucky
  17. kskid

    Writing back to a database table

    I have used Crystal reports to create the SQL update transactions. I then export it to a text file and process them in the database.
  18. kskid

    Vanity Plates III

    Saw this yesterday on a Mazda Miata. PAPRJAM Maybe a Printer/Copier service rep?
  19. kskid

    Selection formula causes .rpt to close down

    How about ({Name_Address.PURPOSE} = "P.O. Address" and (isnull({Activity.THRU_DATE}) or {Activity.THRU_DATE}>=CurrentDate) and {Activity.PRODUCT_CODE} = "COMMITTEE/ST_STRAT_TM" and ( Select {?StateCode} Case "AL": {STATE_REPS.ALABAMA} Case "AK": {STATE_REPS.ALASKA} . . . Case "WY"...
  20. kskid

    Vanity Plates III

    Saw a couple over the weekend LILMEXY GD2BALIV

Part and Inventory Search

Back
Top