Feb 20, 2003 #1 GrannyJo Technical User Feb 20, 2003 1 US How do I take a group field and the group with in the field? Ie, I am grouping by market model, I want to group by the first 5 digits of the model.
How do I take a group field and the group with in the field? Ie, I am grouping by market model, I want to group by the first 5 digits of the model.
Feb 20, 2003 #2 synapsevampire Programmer Mar 23, 2002 20,180 US Create a formula with: left(table.marketmodel,5) if it's a string. If it's a number, use: left(totext(table.marketmodel,0),5) -k http://www.informeddatadecisions.comkai@informeddatadecisions.com Upvote 0 Downvote
Create a formula with: left(table.marketmodel,5) if it's a string. If it's a number, use: left(totext(table.marketmodel,0),5) -k http://www.informeddatadecisions.comkai@informeddatadecisions.com
Feb 20, 2003 #3 synapsevampire Programmer Mar 23, 2002 20,180 US Ooops, if it's a number use: left(totext(table.marketmodel,0,"",5) Otherwise you'll get a thousands separator. -k http://www.informeddatadecisions.comkai@informeddatadecisions.com Upvote 0 Downvote
Ooops, if it's a number use: left(totext(table.marketmodel,0,"",5) Otherwise you'll get a thousands separator. -k http://www.informeddatadecisions.comkai@informeddatadecisions.com
Feb 21, 2003 #4 chelseatech Instructor Aug 25, 2001 1,812 NZ Remember that a new group will come in as the lowest level group. You can chaage the group order inside the designer, by dragging the group header or footer to a higher or lower level. Saves a lot of time. Editor and Publisher of Crystal Clear http://www.chelseatech.co.nz/pubs.htm Upvote 0 Downvote
Remember that a new group will come in as the lowest level group. You can chaage the group order inside the designer, by dragging the group header or footer to a higher or lower level. Saves a lot of time. Editor and Publisher of Crystal Clear http://www.chelseatech.co.nz/pubs.htm