I would like to thank you for your help in advance. I have a table called sheet1. It has a field for ID (PID), and many fields for scores assigned by evaluators (text not number) The fields have the same first part (Rev) and a numbers appended to them : Rev1, Rev2, etc. I want to loop through all the fields that have the scores and change them from string to number and then use them to create a new field called total that has the total numbers of values< 4 across the fields. The ID field should not be in the loop.. I have never used loops before. Therefore, I will be very grateful if you let me know 1) how to exclude the ID field from the loop and include the fields I want only and 2) what should I do to end up with the results I want.
Thanks again
What I have
Table: Sheet1
Fields: PID, Rev1, Rev2, Rev3, Rev4 ---------------- Rev30
Current table:
What I want
Thanks again
What I have
Table: Sheet1
Fields: PID, Rev1, Rev2, Rev3, Rev4 ---------------- Rev30
Current table:
PID | Rev1 | Rev2 | Rev3 | Rev4 | Rev30 |
1 | 1 | 2 | 3 | 5 | ---- |
2 | 4 | 4 | 5 | 5 | ---- |
3 | 4 | 5 | 6 | 5 | --- |
PID | Rev1 | Rev2 | Rev3 | Rev4 | Rev30 | Total (values < 4) |
1 | 1 | 2 | 3 | 5 | --- | 0 |
2 | 4 | 4 | 5 | 5 | --- | 2 |
3 | 4 | 4 | 4 | 5 | ---- | 3 |