Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want show my table, only when I select a value in the multiple selection...
I have a table and a multiple selection... I need it to be invisible and when I select a value in the multiple selection, I need it to appear, bringing what I asked. When I deselect the value, the table must vanish
You can set the conditional show based on the selections in a field or fields. One way would be:
GetSelectedCount(Field1) > 0 Or GetSelectedCount(Field2) > 0
You would need some definition for each field.
I'll try to explain his answer.
Right click on the table you want to be invisible. Select Properties. Go to the Layout tab. There's a "Show" radio button with Always and Conditional. Select Conditional. In the expression box that opens up, enter NMiller's expression. Change "Field1" and "Field2" in his expression to the fields you want to control the table. Click OK.
I'm not sure that you really wanted two fields, though. If you just want one field, use this instead:
GetSelectedCount(Field1)
We both appear to be interpreting what you asked for the same way. So if that's not it, you may need to explain it a third time.
Are you looking for something like the attached?
Put a formula like "=getselectedcount(Customer)>0" in the Conditional field of the Layout tab in the table that you want to show and hide.
Regards.
Edit: Beaten again. Time for a break.
Karl Pover wrote:Edit: Beaten again. Time for a break.
Yeah, but you posted a working example, so you get bonus points. 🙂
thank you very much, friends
I used the: GetSelectedCount(Field1)
I had exactly what I wanted
thank you again