Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all ,
I am having Start Date & End Date (From - To) in my calendar object ,
So, Here the problem is once i clear the selections ...
Then Calendar object is also clear.
Thanks,
Madhu
Instead of using a field for the contents of the calendar object use a variable e.g.vFromDate. Set the contents of this variable to
=Min(Date)
See also attached
I think you can add a field event trigger (Menù --> Settings --> Document properties --> Triggers) and use the getselectedcount function, something like
='(' &
if(GetSelectedCount( StartDate)=0,
'"' & Min({1} StartDate) & '"',
'"' & Max(StartDate) & '"'
)
& ')'
Hi Massimo Grossi,
Thanks for your Inputs.
In my application , i am using "Variable Event Triggers" .