Print Page | Close Window

Forumula

Printed From: Crystal Reports Book
Category: Crystal Reports .NET 2003
Forum Name: Data Connectivity
Forum Discription: How to connect to data sources and export reports
URL: http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=4232
Printed Date: 16 May 2024 at 10:11pm


Topic: Forumula
Posted By: K.Arun_ya
Subject: Forumula
Date Posted: 11 Sep 2008 at 10:17pm

Dear all,

            When I generate Report(crystal report 7.0) the following formula error is occurred . help me how I solve the problem.

 

Formula:

      if {Report_Table.DtlNum15} mod 9 =0 then

      if OnLastRecord =true then

        false

      else

        true

else

        false

 

Error:

            The Word 'then' is missing




Replies:
Posted By: Savan
Date Posted: 12 Sep 2008 at 2:43am
 if ({Report_Table.DtlNum15} mod 9) = 0 then

     ( if OnLastRecord = true then

        false

      else

        true;)

 else

   (false;)



-------------
Thanks
Savan



Print Page | Close Window