Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Peca
Contributor II
Contributor II

Two fields with same data but different names

Hi,

I have two fields with same data but different names.

Is there a way to apply selection from field ABC to field ABC1?

Peca_0-1670578424562.png

 

Labels (3)
1 Solution

Accepted Solutions
achampire
Partner - Creator
Partner - Creator

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 !

View solution in original post

2 Replies
achampire
Partner - Creator
Partner - Creator

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 !

Peca
Contributor II
Contributor II
Author

Hi Achampire,

Thanks for the quick reply. 

I treid your way and it works fine.

Thanks again.