Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Hiding APEX Report column which is based on SQL Query

Kokila RTDec 24 2018 — edited Dec 31 2018

My requirement is below. I have a classic Report based on SQL query.

select A,B,C,D from table1; 

I need to Show the column D only when the value is NOT null. Output when D have value

Col Val A -- 1 B -- 2 C -- 3 D -- 4  Col Val A -- 1 B -- 2 C -- 3 D -- NULL 

I dont want to show the Row D when D is not null.

I tried to use server side condition in Column D. But I am not able to refer the value of column D. Cannot use Item is not null because D is not a page item.

Thanks,

Kokila

This post has been answered by fac586 on Dec 27 2018
Jump to Answer
Comments
Post Details
Added on Dec 24 2018
22 comments
5,787 views