cancel
Showing results for 
Search instead for 
Did you mean: 

Tables in PDF

Former Member
0 Kudos

Hi Everyone,

I have a table in pdf which contains columns <b>C1,C2,C3,C4,C5,C6</b>....etc...

Based on my project id, I have to hide some columns during runtime for example i have to hide <b>C2</b> and <b>C5</b>

My Pdf Contains..

<b>C1 C3 C4 C6</b> ...ect..

Can any one help me on this

Thanks and Regards

Ravi.Golla

Accepted Solutions (0)

Answers (1)

Answers (1)

mona_mehta
Participant
0 Kudos

Hi Ravi,

In the initialise event of the column cells, set the script like follows

eg if your project id is 'ABC', you have to hide the columns

C2 of Table1

if ( projectid == 'ABC' ) {

Table1.C2.presence = "hidden";

}

Also remember to create the table as a flowed subform, where the Row is a repaeting subform.

Please let me know if anything is not clear.

Thanks

Mona