Page 1 of 1
NULL display property is not Work
Posted: Tue Sep 19, 2006 5:31 am
by MARIMUTHU K
Hi hi hi
hi super team,
I am working stiReport 1.6.1 latest version.
I have formated one field for e.g
if field is NULL Value then display Empty string(white space)
So i have changed TextFormat in Number and then Null Dispaly select " ",
But it is no use , Becaze didn't any changed.(NULL display property is not Work)
My Need:
if(Table1.UNITS=="0.00")
e.Value="";
else
e.Value=Table1.UNITS;
So, Please provide solution or other way.
Thanks ahead.
Regards,
NULL display property is not Work
Posted: Tue Sep 19, 2006 5:48 pm
by Vital
Use following expression:
Code: Select all
{Table1.UNITS=="0.00" ? "": Table1.UNITS}
Thanks.
NULL display property is not Work
Posted: Tue Sep 19, 2006 11:28 pm
by MARIMUTHU K
Thanks,
Ok fine.
But Table1.UNIT values are different ,
e.g
1. Table1.UNIT="0" or Table1.UNIT="00" or Table1.UNIT="000" and so on.
that situation i am rite
{Table1.UNIT=="0" ?"":Table1.UNIT} {Table1.UNIT=="00" ?"":Table1.UNIT} {Table1.UNIT=="000" ?"":Table1.UNIT} {Table1.UNIT=="0000" ?"":Table1.UNIT} {Table1.UNIT=="00000" ?"":Table1.UNIT} upt to "00000000"
Is possible ?
same time Table1.UNIT values are dynamically chagend , Becaze it give to user in depeneded on Decimal_UNIT.
Previous I am using CR 11 and available textFormat in Null dispaly.
this option available or not in Stimul Report?
Please provide solution.
Thanks of ahead.
Regards,
NULL display property is not Work
Posted: Wed Sep 20, 2006 2:21 am
by Edward
KMarimuthu wrote:Thanks,
Ok fine.
But Table1.UNIT values are different ,
e.g
1. Table1.UNIT="0" or Table1.UNIT="00" or Table1.UNIT="000" and so on.
that situation i am rite
{Table1.UNIT=="0" ?"":Table1.UNIT} {Table1.UNIT=="00" ?"":Table1.UNIT} {Table1.UNIT=="000" ?"":Table1.UNIT} {Table1.UNIT=="0000" ?"":Table1.UNIT} {Table1.UNIT=="00000" ?"":Table1.UNIT} upt to "00000000"
Is possible ?
same time Table1.UNIT values are dynamically chagend , Becaze it give to user in depeneded on Decimal_UNIT.
Previous I am using CR 11 and available textFormat in Null dispaly.
this option available or not in Stimul Report?
Please provide solution.
Thanks of ahead.
Regards,
Please use
HideZeros property of
StiText component.
Thank you.
NULL display property is not Work
Posted: Thu Sep 21, 2006 6:36 am
by MARIMUTHU K
Thank u.
Yes, I got it.