开发者

crystal report 9 printing string

开发者 https://www.devze.com 2023-02-08 13:54 出处:网络
I have column its name \'owner\' and its has the following vlaue ownerName -------- Koni Sally Jimmi Jone

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}
0

精彩评论

暂无评论...
验证码 换一张
取 消