Hi I have a data set and below is a sample of it. What I am trying to do here is compare column A and B and update C is A and B is not matching. I want an out put where It should should only columns where C values are not equal to 0. I have about 30 columns and in this 30 check columns I want only the check columns where the output value is not equal to 0. From the below sample table I want only column D,E,DE_Check and H,I,HI_Check should only show up as DE_Check and HI_Check where rows is not equal to zero. this is like a check that I am planning to product. Thanks for the help
| S/No | A | B | AB_Check | D | E | DE_Check | H | I | HI_Check | F | G | FG_Check | L | M | FG_Check |
| 1 | 1 | 1 | 0 | 3 | 1 | 1 | 2 | 2 | 0 | 1 | 1 | 0 | 1 | 1 | 0 |
| 2 | 2 | 2 | 0 | 1 | 1 | 0 | 1 | 2 | 1 | 2 | 2 | 0 | 2 | 2 | 0 |
| 3 | 3 | 3 | 0 | 2 | 3 | 1 | 3 | 2 | 1 | 3 | 3 | 0 | 3 | 3 | 0 |