Forum Discussion
Mic1979
1 year agoPost Partisan
Combine list of elements
Dear all, I got some tables from a colleague, and from them I created the following lists: The first one, named High_Runner_Sanatory_AM_Function, And the second one, named High_Runner_San...
m_dekorte
1 year agoResident Rockstar
Hi Mic1979,
If I understand correctly, all you'd need to do is Zip both lists, like so:
List.Zip({ High_Runner_Sanatory_AM_Function, High_Runner_Sanatory_AM_Analog_Input})
That will output a list like this:
{
{"ON/OFF", "0-24V"},
{"Prop.", "0-10V SP"}
}
I hope this is helpful