2 different variables with different lists


I want to create a procedure that if 'isFiltered=false' then use the partialTableData list, if isFiltered=true then use the filteredList. Instead of copying the process, i just want to just change the partialTableData to filteredList and vice versa

Can you describe how we know if a row of fullTableData belongs in partialTableData?

What I mean to say is 'isFiltered' is equal to true, then all the getPartiableTableData will be change to getFilteredList, instead of manually duplicate the blocks and change it to another variable. I just wanted to have a neat block setup

What is in the getFilteredList ?

Provide examples of data for your three lists...

Study the chapter on procedures and procedure parameters in the free book at

Duplicating blocks is indeed poor practice.