BusinessObjects Board

Hide a Table

Hi ALL,

Can we hide the table depending upon a condition.
If value is 1 then it should hide entire table. otherwise it should display.

Using Alerts i can make it as white.
But the thing is I have set of countries need to be displayed in a table.
some of the countries are not equivalent to 1 condition so i am unable to do htis.

will it be possible.

Thanks,
Sujatha


lilly (BOB member since 2006-02-09)

Hi,
We can not hide a table in Web-I unlike the Desk-I where we have the hide block option. :nonod:
One work around is type the code for each of the object in the table.
Say, If Condition value =1 then else “”.
So the data will be shown only if the condition has value =1 else balnk column will be shown.

Caution-: You will have to remove all the borders, otherwise the table structure will be shown


Omkar Paranjpe :us: (BOB member since 2006-02-13)

You can hide a table. Use the report level filter on a table, and uncheck the Show if Empty block. Heres a old post https://bobj-board.org/t/103302


Roshknee :india: (BOB member since 2007-10-29)

You can hide a table. Use the report level filter on a table, and uncheck the Show if Empty block. Heres a old post https://bobj-board.org/t/103302


Roshknee :india: (BOB member since 2007-10-29)

Hi Roshknee,
Thank you for ur post. But it will not be help ful to us in our scenario

Our requirement is We are having 2 same tables
We are having filter condition on login user.
Filter condition applied like
if(login user=currentuser;1;0)
we made 1st table to present with 1 filter and if it is null then we unchecked “show values when empty”.
so its working

the 2nd table should appear when ever 1st table disappears. this is working fine
but when ever 2nd table present the 1st table shall be hide
we are unable to make this.

Please let me know if it possible


lilly (BOB member since 2006-02-09)

Why don’t you create a filter for the 2nd table that is exactly opposite of the filter for the 1st table ie if(login user=currentuser;0;1) and do the same that you did for the 1st table.


rimpa :india: (BOB member since 2008-04-14)