Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Dolly123
Creator II
Creator II

Report

I want to make a sheet of information of student 

filters =  student id

Name : ravi (It should be change) by select of id

surname : xyd

class : 9std

roll no : 12

name, surname,class,rollno will be fix and all information infront of fix names should changes according to selection

if anyone know how to implement please reply here ?

 

3 Replies
KGalloway
Creator II
Creator II

You can add a calculation condition to a table so it only shows its data if a single student_id is selected:

KGalloway_0-1696432939336.png

Then when you select a student_id, it shows the data:

KGalloway_1-1696432973757.png

 

Here is the sample data I used:

table:
load * inline [
student_id, name, surname, class, roll_no
1, s1, a, 9, 2
2, s2, b, 9, 6
3, s3, c, 10, 5
4, s4, d, 10, 3
5, s5, e, 11, 4
6, s6, f, 11, 8
]
;

Let me know if I can clarify anything.

 

Dolly123
Creator II
Creator II
Author

In filter i will add std id then i will take table and add inline load data then it will work or we have link between filters and tables ?

KGalloway
Creator II
Creator II

The inline load was just for me to have sample data. You shouldn't have to change whatever load you are already doing.

The filter and table visualizations will already be linked in the app if they use data from the same table in the app.

The key here is the calculation condition in the table visualization. It forces the table visualization only to show data when you select a single student id.

Let me know if I can clarify anything.