Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
gidon500
Creator II
Creator II

Select a field auto select same value to other field

hi all

Is it possible  to select a value a field  MONTH1

and same value will be selected to other field MONTH2

I need that when I select MONTH1 AS 6 , THEN MONTH2  WILL BE AUTO SELECT AS 6 AS WELL

THANKS

GIDON

1 Solution

Accepted Solutions
sunny_talwar

Sorry, you need parenthesis and not square brackets:

='(' & Concat(MONTH1, '|') & ')'


Capture.PNG

View solution in original post

11 Replies
sunny_talwar

Add a trigger on MONTH1 field where you use Select in Field trigger to set MONTH2 with the value =MONTH1

sunny_talwar

Capture.PNG

gidon500
Creator II
Creator II
Author

HI

IT WORKS GREAT IF WE SELECT ONLY ONE VALUE

IF I SELECT 2 VALUES IT DOES NOT WORK

IS THERE SOLUTION FOR THIS PURPOSE

GIDON

sunny_talwar

You can use this in that case for Search String

='[' & Concat(MONTH1, |) & ']'

gidon500
Creator II
Creator II
Author

HI SUN

TRIED IT , THERE IS AN ERROR

CAN YOU PLEASE PUT IT IN THE DOCUMNET TO SENT AT FIRST

THANKS YOU VERY MUCH FOR YOUR HELP

GIDON

ecolomer
Master II
Master II

Yes, see this example.

jonathandienst
Partner - Champion III
Partner - Champion III

Should be

='(' & Concat(MONTH1, '|') & ')'

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
sunny_talwar

Sorry, you need parenthesis and not square brackets:

='(' & Concat(MONTH1, '|') & ')'


Capture.PNG

gidon500
Creator II
Creator II
Author

THANKS

IT WORKS

GIDON