Whether its possible setting range in IF THEN Condition.
For example, Checking like lineCount between 3 to 7 then nextpage…
I try with like dis IF (LineCount > 3) OR (LineCount> 7) THEN but result of 1st page will be 4 lines since it satisfied 1st condition skip to nextpage…
CurrReport.SHOWOUTPUT((SalesLineExist = FALSE) AND TempBuffer.Bol1);
LineCount:=LineCount+1;
//IF (LineCount>10) THEN
IF (LineCount>5) OR (LineCount>10) THEN
BEGIN
CurrReport.NEWPAGE;
LineCount:=1;
END
Nisha, sorry for the typo here; it should have been:
IF (LineCount >= 3) AND (LineCount <= 7) THEN
Then:
I quess we’re al struggling trying to understand your requirements. First you tell one (your first post in this thread), now you tell there are two. So let’s return to the question Mohana posed:
Please elaborate on that.
And I do not want to be offensive, but to be honest: you’re English phrasing is not so easy to understand.