我正在尝试使用 Crystal Report 7 制作报告。但是当我尝试使奇数细节变为白色而偶数细节变为灰色时遇到了麻烦
我在等待答案。谢谢
即使它是一个旧帖子,也许有些人仍然需要它。我碰巧还在使用 cr 7,我使用这个逻辑,这很好用。
if right(totext(recordnumber / 2),2) = '00' then White else Black if right(totext(recordnumber / 2),2) = '00' then true else false
看看这个链接,这可能会对你有所帮助。 http://victoriayudin.com/2009/03/31/alternating-shading-for-lines-in-crystal-reports/
或者试试这个:如果 RecordNumber mod 2 = 0 那么 crWhite 否则 crSilver。