Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have two fields with same data but different names.
Is there a way to apply selection from field ABC to field ABC1?
Hello @Peca ,
I don't think that there is a way to config an application to automatically apply a selection from a field to another field.
That said, you could use a button in order to select values into a field that target your field ABC1 for example and use the below expression into value.
=Replace(Purgechar(GetFieldSelections(ABC),' '),',',';')
That way, your selection to your ABC field will be applied to ABC1.
Hope it helps !
Hello @Peca ,
I don't think that there is a way to config an application to automatically apply a selection from a field to another field.
That said, you could use a button in order to select values into a field that target your field ABC1 for example and use the below expression into value.
=Replace(Purgechar(GetFieldSelections(ABC),' '),',',';')
That way, your selection to your ABC field will be applied to ABC1.
Hope it helps !
Hi Achampire,
Thanks for the quick reply.
I treid your way and it works fine.
Thanks again.