Multi-tab dashboard from multiple data tables
Hi, I am creating a multi-tabbed dashboard based on the script given in the following discovery talk: https://community.jmp.com/t5/Discovery-Summit-Americas-2021/One-Multi-tabbed-Filterable-Dashboard-2021-US-30MP-803/ta-p/398667 The script used to combine several dashboards is the following: dashes = Find All(Reports);
tb = Expr(Tab Box());
For(i = 1, i<= N Items(dashes), i ++,
tabPage = Ex
...