Hi Kumar,
I meant:
Table 1.Field1 | Table 1.Field2 | Table 1.Field3 |
1 | A | X |
1 | B | Y |
2 | A | S |
2 | B | T |
3 | A | U |
3 | B | V |
1/ If field 1 contains same values (like here 1 and 1, 2 and 2..) that means group on same values on field 1 then check for those 2 values the Field 2 if = A then display X (or related value)
2/ same logic
Assumptions:
In Field1 values will always be in pairs
In Field2 values will be always whether A or B
In Field3 values will be all different
Thank you