Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

dimenssion with no efect

hi,

i have deshboard and i want that 2 of the chart will no efect from dimenssion select ( month ),

it will show from first month till today , but the others objects will efected by the month selection.

hope it's understood.

thanks'

yarin.

1 Solution

Accepted Solutions
SergeyMak
Partner Ambassador
Partner Ambassador

small correction:

sum(${<month=>} value)

Regards,
Sergey

View solution in original post

4 Replies
eduardo_sommer
Partner - Specialist
Partner - Specialist

Hi,

If you don't want that a selection influence a chart expression, you can do this using set analysis, as in sum(${<month=> value). This syntax will ignore any selection in the field month.

Eduardo

SergeyMak
Partner Ambassador
Partner Ambassador

small correction:

sum(${<month=>} value)

Regards,
Sergey
senpradip007
Specialist III
Specialist III

Try this:

Sum({$<Month=, [Other Fimensions]>} [Your field])

or

Sum({$<Month, [Other Fimensions]>}  [Your field])

jagan
Luminary Alumni
Luminary Alumni

Hi,

If you want to ignore the selections then you can just give MonthDimensionName= in set analysis expression, it ignores the selection of the field.

Ex: sum(${<MonthDimensionName=>} MeasureName)

Replace MonthDimensionName and MeasureName with your actual field names.


Regards,

Jagan.