Here is a simplified version of what I am trying to do. I have a table similar to the one below, with each record having 4 fields, A, B, C, D.
[A] [C] [D]
1 1 2 4 8
2 7 9 6 2
3 3 5 10 2
4 13 5 7 6
I want to be able to find the highest value for each record, and display it in a new field called [MAX], so that my table will look like this.
[A] [C] [D] [MAX]
1 1 2 4 8 8
2 7 9 6 2 9
3 3 5 10 2 10
4 13 5 7 6 13
I can do this task using EXCEL, by using the MAX function and highlighting each row, and I can do this task so that it gives the MAX for each field and I can also do this task so that it gives the MAX value for the whole table but I cannot do this task for each record. Can anyone help?
[A] [C] [D]
1 1 2 4 8
2 7 9 6 2
3 3 5 10 2
4 13 5 7 6
I want to be able to find the highest value for each record, and display it in a new field called [MAX], so that my table will look like this.
[A] [C] [D] [MAX]
1 1 2 4 8 8
2 7 9 6 2 9
3 3 5 10 2 10
4 13 5 7 6 13
I can do this task using EXCEL, by using the MAX function and highlighting each row, and I can do this task so that it gives the MAX for each field and I can also do this task so that it gives the MAX value for the whole table but I cannot do this task for each record. Can anyone help?