I have got a combo box which contains values and is multi select enabled. The user can choose one or two items.
I want to show or hide buttons based on the user's selection. The user can choose any two items from the following list:
Project A
Project B
Project C
SAP A
SAP B
No Budget
Budget
Contact award
So for example, if someone chooses any item which includes "project" the project button will become visible and
if someone chooses any item which includes "SAP " the SAP button becomes visible. If they any of the SAP and Project items selected both buttons will be visible
As there are 56 possible combinations using two items from the list above and since there is no difference between the form which will load if Projects A, B or C are selected (and the same for SAP A and B), is there a way I can do this easily without having to cover all 56 combinations?
So far I've tried setting a variable if someone chooses "SAP A" and "Project A" and set it to true using the following statement as an example:
If("SAP" in Data cart selected Items true , Set(var, true))
However, the above statement still reruns the value "False" instead of "True".