Hi everyone,
Is it possible to select a range of rows with variables?
This is what I have, but it found the maximum over the entire range:
vlower = lowerVoltage << get;
vupper = upperVoltage << get;
row1 = (vlower/10)+1;
row2=(vupper/10)+1;
select_rows = row1::row2(dt2);
select_values = dt2:Idoff(select_rows);
id = maximum(select_values);