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 derfloh 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. driaspoc

    Displaying Broken Ranges

    Yep, you're right. My post took a year range like 1998, 2000-2005 and made it look like 1998-2000-2005. Thanks for the correction. It seems to work.
  2. driaspoc

    Displaying Broken Ranges

    Here's what seems to work on the details formula: whileprintingrecords; stringvar x; if(OnFirstRecord) then x := totext({TABLE.YEAR}) + "-" else if onlastrecord then x := x + totext({TABLE.YEAR},0,"") + "," else if {TABLE.YEAR} = next({TABLE.YEAR})-1 and ( {TABLE.MODEL} <>...
  3. driaspoc

    Displaying Broken Ranges

    Thanks for the help. Unless I misread the posts the first reply comes closest to solving my problem. However, for a range of years such as 1992-2002, 2005-2006 it ends up as: 2002,2005. For a range such as 1993-1999 it seems to work right. This was definetely the help I needed though. Thanks.
  4. driaspoc

    Displaying Broken Ranges

    I'm doing a vehicle report. The report groups by model id. Each model has a bunch of years. It ends up looking like this: Toyota Corolla 1992 1993 1994 2000 2005 2006 Acura Integra 1999 I want to be able to list...

Part and Inventory Search

Back
Top