Connecting table variable to slider box
I have a table variable A that is connected to some formulas in my data table.dt = currentdatatable();
dt << Set Table Variable( "A", 1 );
I want to build an application using the Application Builder where I move a slider using the Slider Box and this updates my table variable A in the data table, i.e. if the slider is changed to 2, A is updated to 2 in the data table.How could I connect those two?...