Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with WHILEREADINGRECORDS

Status
Not open for further replies.

gtb12314

Programmer
Jan 7, 2008
41
US
Hi Everyone,

Here are my two formulas in the report:

1.

WHILEREADINGRECORDS;
{0199_Budget_By_Month.SUMMARYLVL1} = "" OR uppercase({0199_Budget_By_Month.SUMMARYLVL1}) = "BLANK" OR {@Group 2: Heading} = "...."

2.

WHILEREADINGRECORDS;
STRINGVAR ARRAY L2;
STRINGVAR ARRAY L3b;
{0199_Budget_By_Month.SUMMARYLVL1} = "" OR {0199_Budget_By_Month.SUMMARYLVL1} = L2[1]
OR uppercase({0199_Budget_By_Month.SUMMARYLVL1}) = "BLANK" OR {@Group 3 Heading} = "...."
or {0199_Budget_By_Month.SUMMARYLVL2} in L3b;

And I am getting an error such as "Formatting formulas must be print-time formulas" for both of my formulas, and the error is pointing at WHILEREADINGRECORDS;

Please suggest how to resolve this. I am using Crystal Reports XI.


Thanks in advance
 
are these formulas being used to create a formula or are they in a formatting section somewhere... like font color etc...? or maybe even in a suppression area...?

_____________________________________
Crystal Reports XI Developer Version
Intersystems Cache 5.X ODBC connection

 
Both the formulas are in suppression area. Sorry I forgot to mention that.
 
try removing WHILEREADINGRECORDS;

_____________________________________
Crystal Reports XI Developer Version
Intersystems Cache 5.X ODBC connection

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top