crystal report 9 printing string
I have column its name 'owner' and its has the following vlaue
ownerName
--------
Koni
Sally
Jimmi
Jone
Sami
and i want to print this value in crystal report as following using formula ownerName
开发者_运维问答 Koni
--Sally
----Jimmi
------Jone
--------Sami
thank you for any help
This can be done by using the following formula criteria:
If (RecordNumber > 1) Then
ReplicateString("-", RecordNumber) + {DatabaseFieldName}
Else
{DatabaseFieldName}
精彩评论