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: 
microwin88x
Creator III
Creator III

Multiple Selector with Calculated Dimension not showing field in green

Hello!

I have a calendar (from xxx date / to xxx date) and multiple selection fields:

1.png

The multiple selection fields (for example: Zona, Partido, Localidad, Oficina) are a calculated dimension

Example for Oficina: =IF(ID_TIE_FECHA# >= '$(vFechaDesde)' AND ID_TIE_FECHA# <= '$(vFechaHasta)',OFICINA)

>>> That is to use the calendar when I select dates.

The thing is that when I select a value IN A CHART (or somewhere outside the multiple selector) it doesn't selects in green in the multiple selector, as you can see in the following image:

2.png

I believe it has to be with the calculated dimension defined in the multiple selector. Is there any way to automatically select the corresponding value?

Thank you!!!

1 Solution

Accepted Solutions
Nicole-Smith

Try changing your dimension to:

aggr(only({<ID_TIE_FECHA#={'>=$(vFechaDesde)<=$(vFechaHasta)'}>}OFICINA),OFICINA)

View solution in original post

2 Replies
Nicole-Smith

Try changing your dimension to:

aggr(only({<ID_TIE_FECHA#={'>=$(vFechaDesde)<=$(vFechaHasta)'}>}OFICINA),OFICINA)

microwin88x
Creator III
Creator III
Author

Thank you!!! It worked!!