changing the value of input channel doesn’t send command to linked output channel.
if you need auto sync, you will need auto control module.
if you just want to send cmd to device and set value of an input channel at the same time once you press a button, you can create a formula
int CmdExample(int c, int v)
{
SetVal(c,v);
return v;
}
set the device and cmd number of out channel 60000 same as out channel 21094
and enable formula of out channel 60000,
CmdExample(11094,5)