From: carol f. <cf...@eh...> - 2004-11-08 21:48:22
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Dus-ascii"> <TITLE>Message</TITLE> <META content=3D"MSHTML 6.00.2800.1458" name=3DGENERATOR></HEAD> <BODY> <DIV><SPAN class=3D719094821-08112004><FONT face=3DArial size=3D2>Is = there a suppress=20 for a horisontal line? I have a report that has subtotals after = each=20 category and then another subtotal for the first 3 categories, = followed by=20 a heavy horizontal line. Also, is there a conditional page = break? =20 This report has a page break after this second subtotal, and then after = the next=20 3 categories.</FONT></SPAN></DIV></BODY></HTML> |
From: Carol F. <cf...@eh...> - 2004-11-08 21:55:05
|
For the horizontal line suppress, there needs to be a conditional on the suppress. I don't want it to always be zero. For the conditional pagebreak, I think it should be something like <Break name="somename" newpage="iif('somevalue' = 'value1' || 'somevalue' = 'value2', yes, no)" ... -----Original Message----- From: Bob Doan [mailto:bd...@si...] Sent: Monday, November 08, 2004 2:44 PM To: Carol Fouse Subject: Re: formatting Carol, Can you also ask the list please rli...@li... On Mon, 2004-11-08 at 14:53 -0700, Carol Fouse wrote: > Bob - > > Is there a suppress for a horisontal line? I have a report that has > subtotals after each category and then another subtotal for the first > 3 categories, followed by a heavy horizontal line. Yes.. we just added in this feature You can do it by making the size zero.. I'll have a new release shortly > Also, is there a conditional page break? This report has a page break > after this second subtotal, and then after the next 3 categories. Ummm.. we don't have conditional page breaks yet.. Can I see an example to see what you mean.. or example RLIB syntax for what you are looking for?? - bob |
From: Bob D. <bd...@si...> - 2004-11-08 23:32:14
|
On Mon, 2004-11-08 at 15:16 -0700, Carol Fouse wrote: > For the horizontal line suppress, there needs to be a conditional on the > suppress. I don't want it to always be zero. Err.. thats what I ment.. that we did that internally a few days ago. > > For the conditional pagebreak, I think it should be something like > <Break name="somename" newpage="iif('somevalue' = 'value1' || > 'somevalue' = 'value2', yes, no)" ... Ok.. that makes sense.. I'll do that > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Monday, November 08, 2004 2:44 PM > To: Carol Fouse > Subject: Re: formatting > > > Carol, > > Can you also ask the list please rli...@li... > > On Mon, 2004-11-08 at 14:53 -0700, Carol Fouse wrote: > > Bob - > > > > Is there a suppress for a horisontal line? I have a report that has > > subtotals after each category and then another subtotal for the first > > 3 categories, followed by a heavy horizontal line. > > Yes.. we just added in this feature > You can do it by making the size zero.. > I'll have a new release shortly > > > > Also, is there a conditional page break? This report has a page break > > > after this second subtotal, and then after the next 3 categories. > > > Ummm.. we don't have conditional page breaks yet.. Can I see an example > to see what you mean.. or example RLIB syntax for what you are looking > for?? > > - bob > -- Bob Doan <bd...@si...> |
From: Carol F. <cf...@eh...> - 2004-11-08 23:44:25
|
What is the symbol for not equal? |
From: Bob D. <bd...@si...> - 2004-11-09 15:16:19
|
!= On Mon, 2004-11-08 at 17:06 -0700, Carol Fouse wrote: > What is the symbol for not equal? > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: > Sybase ASE Linux Express Edition - download now for FREE > LinuxWorld Reader's Choice Award Winner for best database on Linux. > http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Carol F. <cf...@eh...> - 2004-11-09 17:02:47
|
I have seen a suppressblank in one of the examples for suppressing an entire blank line. How about a suppresszero for a value. So that when a value is zero, a blank is printed instead? |
From: Bob D. <bd...@si...> - 2004-11-09 17:41:18
|
You can do it value="iif(something == 0, '', something)" format="iif(something == 0, '', '%d') On Tue, 2004-11-09 at 10:24 -0700, Carol Fouse wrote: > I have seen a suppressblank in one of the examples for suppressing an > entire blank line. How about a suppresszero for a value. So that when a > value is zero, a blank is printed instead? > |