Filter Data Grid 1 based on selection from Data Grid 2
I would like to filter a data grid (contains a subset of a Data Master) on one screen by selecting a row on a data grid (containing a subset of another Data Master) on the previous screen. Each Data Master contains a common field, LoanNumber, with identical data. Can this be done?
I think so. First I'd store the selected row in a variable (this tutorial can help you with that). Then, on the other screen, create an on page load event that changes the value of the data grid (executing a set value event) and, as the new value for the data grid, build an expression like this:
filter(data grid 2, (datamaster2.LoanNumber) = (select (variable, datamaster1.LoanNumber) ) )
I think so. First I'd store the selected row in a variable (this tutorial can help you with that). Then, on the other screen, create an on page load event that changes the value of the data grid (executing a set value event) and, as the new value for the data grid, build an expression like this:
filter(data grid 2, (datamaster2.LoanNumber) = (select (variable, datamaster1.LoanNumber) ) )
How can create this expression, can you please elaborate?
How can create this expression, can you please elaborate?
In this picture datagrid2 is datagrid, number 2 is datamaster2.loannumber and number is datamaster1.loannomber
I hope it helps
In this picture datagrid2 is datagrid, number 2 is datamaster2.loannumber and number is datamaster1.loannomber
I hope it helps
Thanks I have managed to do it!
Thanks I have managed to do it!
Replies have been locked on this page!