Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi there,
i have a listbox with three values for year: 2012 2013 2014
I am using this listbox to enable and disable diagrams. This works fine with 1 value, like this in the Layout - Show Condition:
GetFieldSelections(Year) = 2013
But what about if i need to interpret 2 selections of the User (ie: 2013 and 2014)?
I am looking for a solution like this:
GetFieldSelections(Year) = 2013 or ((GetFieldSelections(Year) = 2013 and GetFieldSelections(Year) = 2014))
Thanks and regards
Sabrina
Thank you!
I have found the solution by myself: Index(GetFieldSelections(Jahr), 2013) >0
Your solution didn't work correctly.
Regards!
Hello,
try this
Match(GetFieldSelections(Year) , 2013, 2014) > 0
Thank you!
I have found the solution by myself: Index(GetFieldSelections(Jahr), 2013) >0
Your solution didn't work correctly.
Regards!
Many thanks for the solution Sabrina, worked really well!!