neuraljack
23rd January 2004, 09:16
hi all,

I have one query regarding report script.

consider

iam spooling the datas to report script. variable(item) in program script as follwing datas
asdsadsadsadsa
c1234567777777
aaa
bbb

in report script:
detail.1:
before.layout:
if item = "aaa" then
lattr.print = false
else
lattr.print = true
endif

will throw like this:

asdsadsadsadsa
c1234567777777
----- blank space
bbb

or

asdsadsadsadsa
c1234567777777
bbb

as output.

Any Input's are greatly appreciated

thanks in advance

Hitesh Shah
23rd January 2004, 09:42
The output will be as follows.

asdsadsadsadsa
c1234567777777
bbb

en@frrom
23rd January 2004, 14:10
And if you want the first option with a blanc line, you should just write as follows:

detail.1:
before.layout:
if item = "aaa" then
item = ""
endif

Good luck!

neuraljack
27th January 2004, 05:53
Thanx to Hitesh and en for ur swift reply