Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Issue while usign Master Measure

HI,

I have created a valuelist : valuelist('Email Open','Email Click') . This is my dimension

For calculating the measure I am using the following formula:

if ( valuelist('Email Open','Email Click','Inbound Response','Net Benefit')='Email Click',Sum(Email_Clicks),

if (valuelist('Email Open','Email Click','Inbound Response','Net Benefit')='Email Open',Sum(Email_Opens)
))

Now I have created a barchart with these synthetic dimensions and measures. I have different segments based on which these values are changing.

But it is not working the other way round; The value of different segments does not change when I click on say Email_Open separately.

I am new to QlikSense and really looking for some help on this.

5 Replies
sunny_talwar

Synthetic dimensions cannot be filtered. You can create a Inline Island Table if you want to be able to make selections

LOAD * INLINE [

DIM

Email Open

Email Click

Inbound Response

Net Benefit

];

And then use DIM as your dimension and the following expression:

If(DIM = 'Email Click', Sum(Email_Clicks),

If(DIM = 'Email Open', Sum(Email_Opens))

Gysbert_Wassenaar

Can you post a small Qlik Sense app that demonstrates the problem?


talk is cheap, supply exceeds demand
Not applicable
Author

I modified my data and used inline tables. It is working fine now. thanks everyone

Not applicable
Author

Hi ,

I am again facing the same issue. I created inline tables and loaded the data in a qliksense table. But this table is not responsive to other charts in my dashboard.

How do I connect these inline dimensions to the rest of the data?

sunny_talwar

Name the field with exactly the same name (even the upper and lower case need to be the same) with the field you want to connect it with and Qlik Sense will do the rest.