Hi @LPLPowerAppUser
Assuming that you followed the procedure in the other thread, you appear to have 6 sets of slider/text input controls. Therefore, there would be 6 'varData' variables that correpond to each pair of slider/textinput controls.
If Form1 is inside NewIntakeProcessScreen, the syntax you use would look something like this:
Navigate(LoadingScreen,ScreenTransition.Fade);
Set(varItem, ThisItem) ;
EditForm(Form1);
Navigate(NewIntakeProcessScreen,
ScreenTransition.Fade,
{
varData1:ThisItem.EaseOfDoingBusiness,
varData2:ThisItem.OverallSatisfaction,
varData3:ThisItem.ClientGrowthNetNewAssets,
etc.....
}
)