Urgent Pls [message #88946] |
Thu, 03 July 2003 05:26 |
jan
Messages: 71 Registered: August 2002
|
Member |
|
|
i have two columns eg sal, comm other than
empno, ename etc
i want to diplay heading of only those out of two(sal, comm) which is not null
ie if comm is null then its heading should not appear
how
|
|
|
Re: Urgent Pls [message #88952 is a reply to message #88946] |
Mon, 07 July 2003 01:42 |
sujit
Messages: 94 Registered: April 2002
|
Member |
|
|
hi,
you can write the code in the format trigger of the heading
if comm is null then
return false;
else
return true;
Sujit
|
|
|
|