Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 ?
You can add a calculation condition to a table so it only shows its data if a single student_id is selected:
Then when you select a student_id, it shows the data:
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.
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 ?
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.