can we pull the values of a particular cell in a table by using its header names.
PartNo | M1 | M2 | M3 |
A | 10 | 24 | 13 |
B | 20 | 55 | 15 |
C | 30 | 25 | 22 |
so if from the above table if I want to pull the values from Partno C and Machine M3 intersection. I can do it by using a for loop, but if there is more efficient way to do that, please let me know.
I am expecting something like
int ct=gettablenum("CycleTime", rowno by using row header name, col num by using column header).
I am not able to figure out how to get the parameter 2 and 3 in the above function. Please let me know.