cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with form Calc

Former Member
0 Kudos

Hello at all,

I will give out a table in adobe forms.

The hierarchy is as follows

subform -it table binding itab

subform is - line binding data of itab

subform a -subline a

subform b -subline b

subform c -subline c

I want to hide subform b in this table table when a criteria of one line is given.

How can i do this.

Regards

Chrisp

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

HI Chirstopher,

write simple logic at subform b -subline b

if subform a ne " " then

this.presence = "hidden"

endif

thanks,

Madhukar

Former Member
0 Kudos

I've tried this, but without access.

IN subform b i have a textfield. When this is emty i will hide the subform b.

I think i can do it so:

if $record.table.data.textvalue eq " ".

then this.subform a.presence = "hidden";

else this.subform a.presence = "visible";

endif

But no success.

Regards

OttoGold
Active Contributor
0 Kudos

what version of LCD do you use? 8.1 has a syntax check for example? Or do you think your problem is not with syntax?

Cheers Otto

Former Member
0 Kudos

i use lcd 8.1.

I think my syntax is correct. The syntax check shows no error.

Regards.

OttoGold
Active Contributor
0 Kudos

If you would use Java script, you could test rawValue == null || rawValue == "". I am not sure about FormCalc. Otto