Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Selection Status

Hi,

When exporting data from QlikView to Excel, it is possible to display a Selection Status. This feature is quite useful, but there is one issue which I want to fix somehow.

Let me explain.

In my model there are two tables: Table1 and Table2 which are not connected to each other.

Table1 includes the fields: T1_FieldA, T1_FieldB, T1_FieldC, T1_FieldD, T1_FieldE.

Table2 includes the field T2_FieldA.

I have created a chart based on the fields T1_FieldA, T1_FieldB. Then I published the application on the server and exported the data to excel. Then I see that the selection status in Excel-file includes the selections made in the fields T1_FieldA, T1_FieldB. But the selection made in the field T2_FieldA is not displayed in selection status section.

Is it possible to tune the application in such a way that the selection in the field T2_FieldA will be included in a Selection Status?

Thank you in advance,

Larisa

1 Solution

Accepted Solutions
swuehl
MVP
MVP

I got the output if I added a field reference to the other table somewhere in the chart expressions, like

Sum(Value)+(Count(Name)*0)

Value is a field from table1 and Name a field from table2, both tables not linked

  

OrderDateSum(Value)+(Count(Name)*0)
527,6449445
01/01/201436,38141202
02/01/201446,32751774
03/01/201421,67963865
04/01/201470,00389351
05/01/201468,79202747
06/01/201471,99359261
07/01/201489,59690565
08/01/201442,58632027
09/01/201480,28363655
Selection Status:
OrderDate: 9 of 1000
Name: E:\Users\Stefan\Downloads\ALL.qvd, E:\Users\Stefan\Downloads\bm_test.qvd, E:\Users\Stefan\Downloads\Files.qvd, E:\Users\Stefan\Downloads\Fuel_Transaction.qvd, E:\Users\Stefan\Downloads\Historie.qvd

View solution in original post

3 Replies
swuehl
MVP
MVP

If these tables are not linked in the data model, does a selection in table2 influence your chart results somehow?

swuehl
MVP
MVP

I got the output if I added a field reference to the other table somewhere in the chart expressions, like

Sum(Value)+(Count(Name)*0)

Value is a field from table1 and Name a field from table2, both tables not linked

  

OrderDateSum(Value)+(Count(Name)*0)
527,6449445
01/01/201436,38141202
02/01/201446,32751774
03/01/201421,67963865
04/01/201470,00389351
05/01/201468,79202747
06/01/201471,99359261
07/01/201489,59690565
08/01/201442,58632027
09/01/201480,28363655
Selection Status:
OrderDate: 9 of 1000
Name: E:\Users\Stefan\Downloads\ALL.qvd, E:\Users\Stefan\Downloads\bm_test.qvd, E:\Users\Stefan\Downloads\Files.qvd, E:\Users\Stefan\Downloads\Fuel_Transaction.qvd, E:\Users\Stefan\Downloads\Historie.qvd
Anonymous
Not applicable
Author

Thank you!