I need to know if it is possible to identify which fields equal a certain amount on a row by row basis. Say for example I had an amount of 30, I would need field C to be flagged from the table below.
Please see the before and after tables below for illustration.
Before:
After:
| A | B | C | D | E | F | G (fields equal to 30) |
| 10 | 20 | 30 | 40 | 50 | 60 | C |
If I could take this to the next level and have separate columns indicating if any 2 fields sum to a certain amount also that would be even better (i.e. with example above A and B would be highlighted as they sum to equal 30). Realise this is far more tricky though so I'll be happy with solution to first example.
Thanks for any help.