Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I had a problem
I have two sheets A and B, on the sheet A is the field C, if not selected any value in the field C, then going on a sheet of B must following condition holds - in the field C, select the value excluding "Value1" (not "Value1 "), if the value selected - leave the the selected value
Try sheet level trigger on field C:
=If(GetSelectedCount(c) = 0, '(' & Concat({<c -= {'Value1'}>}DISTINCT Chr(34) & c & Chr(34), '|') & ')', '(' & Concat(DISTINCT Chr(34) & c & Chr(34), '|') & ')')
Attaching a sample for your review
Try sheet level trigger on field C:
=If(GetSelectedCount(c) = 0, '(' & Concat({<c -= {'Value1'}>}DISTINCT Chr(34) & c & Chr(34), '|') & ')', '(' & Concat(DISTINCT Chr(34) & c & Chr(34), '|') & ')')
Attaching a sample for your review
Thank you so much! Work perfect!
Awesome