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: 
Not applicable

Expression and drill down

Hi all,

I have this expression that looks at average sales for the last 7 days.- which I believe works fine.

=Avg({1<Sale_Date={">=$(=Max(Sale_Date)-7)<=$(=Max(Sale_Date))"},Sale_Branch={'Branch01'}>} Product)

Also, I have two other fields in my data model.

Location                    Team

Off Shore                    A

On Shore                    B

Near Shore                 C

                                  D

                                  E

How can I factor Location and team into the expression, so that when I click e.g Team:A my calculation will show Team:A sales in the last 7 days? I do not want to write the long list of Location and Team directly into my expression.

Thank you.

1 Solution

Accepted Solutions
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Try with adding these to your set modifiers:

Team = {$(=chr(39) & concat(Team, chr(39) & ',' & chr(39)) & chr(39))},

Location = {$(=chr(39) & concat(Location, chr(39) & ',' & chr(39)) & chr(39))}

Off the top of my head, so untested.

Peter

View solution in original post

8 Replies
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Remove the 1 set specifier at the front to re-enable selections.

Not applicable
Author

I added "1" so that I can show a trend line for the period.

Please is there any other solution apart from this?

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Try with adding these to your set modifiers:

Team = {$(=chr(39) & concat(Team, chr(39) & ',' & chr(39)) & chr(39))},

Location = {$(=chr(39) & concat(Location, chr(39) & ',' & chr(39)) & chr(39))}

Off the top of my head, so untested.

Peter

Not applicable
Author

Unfortunately, it does not seem to work for me.

Not applicable
Author

Do you mean I should use this?


=Avg({1<Sale_Date={">=$(=Max(Sale_Date)-7)<=$(=Max(Sale_Date))"},Sale_Branch={'Branch01'},

Team = {$(=chr(39) & concat(Team, chr(39) & ',' & chr(39)) & chr(39))},

Location = {$(=chr(39) & concat(Location, chr(39) & ',' & chr(39)) & chr(39))}

>} Product)

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Yes.

If this doesn't work, can you post an example document?

Not applicable
Author

Thanks Peter,

This works now:

Team = {$(=chr(39) & concat(Team, chr(39) & ',' & chr(39)) & chr(39))},

Location = {$(=chr(39) & concat(Location, chr(39) & ',' & chr(39)) & chr(39))}


Regards

Peter_Cammaert
Partner - Champion III
Partner - Champion III

My pleasure.

Enjoy QlikView and the Qlik Community.