Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello to all,
I used a trigger in the following field in my QVD:
The function used was: ='('&if(GetSelectedCount(Month)=0,vMonthName,GetFieldSelections(Month,'|' ) )&')'.
For 'OnSelect' and 'OnChange'.
It was working fine, until I tried to select all months to get the year values, then my selections are cleanup.
The funny thing is that if I select 6 values out of 12 months, it works, if I select 7, it breaks again.
Any ideas on how to solve this issue?
Thanks a lot!!!!
Regards,
Marco Arruda
Can you try this with a small modification:
='('&if(GetSelectedCount(Month)=0,vMonthName,GetFieldSelections(Month,'|', 12) )&')'
Hello Sunny T,
I just tested it and looks like its working perfectly.
Thanks a lot for your support!!
Kind regards,
Marco Arruda