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

Don't Show Chart in Object

Hi,

I am using 2 objects in attached application, given below expression example is object 2 and its working fine

=avg({$<RCH_Path1={'C:London Outlook, K:Exchange-RT_SendAndReceiveMessage, S:Response Time (TF00817 to EXCHANGE01)'}>}RCS_ActualValue),

but when i am using variable in object1as given below expression then its dont show the chart

=avg({$<RCH_Path1={$(#varpath1)}>}RCS_ActualValue),

kindly guide me what happening here.

Regards,

Zain.

1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

hei

all you need to do is write the expression like this

=avg({$<RCH_Path1={"$(#varpath1)"}>}RCS_ActualValue)

so the Formula recorgnize the varaible as text

View solution in original post

3 Replies
lironbaram
Partner - Master III
Partner - Master III

hei

all you need to do is write the expression like this

=avg({$<RCH_Path1={"$(#varpath1)"}>}RCS_ActualValue)

so the Formula recorgnize the varaible as text

SunilChauhan
Champion II
Champion II

hello

u can use this formula

=avg({$<RCH_Path1={'$(#varpath1)'}>}RCS_ActualValue)

this is working. 

thanks

Sunil Chauhan

Sunil Chauhan
Not applicable
Author

Thankyou very much, i got result.

Regards,

Zain.