problem in crystal report 8.0 [message #104280] |
Wed, 08 September 2004 23:00 |
Vijay
Messages: 116 Registered: September 1999
|
Senior Member |
|
|
i used the below code to display the dealer name in detail section.if the same dealer repeated ,then i print "-do-" instead of that dealer name.but when the next page comes i want to display the name in the first line after that the above procedure has to be followed.
if PreviousIsNull ({viewname.dealer_NAME}) then
{viewname.dealer_NAME}
else if previous({viewname.dealer_NAME})={viewname.dealer_NAME} then
" - do - "
else
{viewname.dealer_NAME}
The above code prints "-do_" on the nextpage also.how to rectify that
Thanks in advance
|
|
|