Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

Conditional Show when variable selected

Hi, I want to conditionally show an object when a variable is selected. Can anyone tell me what to put in my conditional show expression?

My variable is

vEndDate

and i want a text object to appear when an end date is selected..

Thanks

4 Replies
shamad
Contributor II
Contributor II

Hi

You have to object general calculation condition and type

=not isnull(GetFieldSelections(vEndDate))

hopkinsc
Partner - Specialist III
Partner - Specialist III
Author

Hi, thanks for your reply, but that doesn't work...

There is no calculation condition on the general page of a text box, theres only a show condition on the layout page.

I tried it on the layout page but it doesn't work.

I want it only to appear when an end date is selected from the calender object which is using the vEndDate variable..

johnw
Champion III
Champion III

Use this as the show condition:

len(vEndDate)

hopkinsc
Partner - Specialist III
Partner - Specialist III
Author

Thanks for your help again John, that worked great.