Hi. I am using Crystal v10
I have the following running total which works great until I get to the end - I want to say:
{@TrimName} like previous ?{@TrimName}?
but I can't quite figure out the syntax that needs to be used with the like, previous and ? characters.
I'd appreciate any help you can give me.
I have the following running total which works great until I get to the end - I want to say:
{@TrimName} like previous ?{@TrimName}?
but I can't quite figure out the syntax that needs to be used with the like, previous and ? characters.
I'd appreciate any help you can give me.
Code:
{@TrimName}=previous({@TrimName}) or
sum({@TEST1},{PJPROJ.user1}) > 0 or
{@TrimName}=previous({@TrimName}) or
{@TrimName}="" or
right({@TrimName},5) like right(previous ({@TrimName}),5)or
left({@TrimName},5) like left(previous ({@TrimName}),5) or
mid({@TrimName},5) like mid(previous ({@TrimName}),5) or
{@TEST1}=0 and next({@TEST1})<>0 and right({@TrimName},5)like right(next ({@TrimName}),5) or
{@TEST1}=0 and next({@TEST1})<>0 and left({@TrimName},5) like left(next ({@TrimName}),5)or
{@TEST1}=0 and next({@TEST1})<>0 and mid({@TrimName},5) like mid(next ({@TrimName}),5)or
{@TrimName} like previous...