Hi, I have a further question regarding the data suppression. I need to suppress data according to the following rules (a third rule is added): If any cell is less than 20, the cell is suppressed for the purpose of confidentiality. When there is suppression of a single cell, the next smallest cell(s) will need to be suppressed so that the value of the suppressed cell cannot be calculated by subtracting the other values from the total for a region. If two or more of the cells within a region are less than 20 (will be suppressed), then the next smallest cell(s) will NOT be suppressed, as the values of suppressed cells cannot be determined. The sample data is here: Region1 Group1 70 Region1 Group2 30 Region1 Group3 10 Region1 Total 110 Region2 Group1 210 Region2 Group2 90 Region2 Group3 50 Region2 Total 350 Region3 Group1 170 Region3 Group2 15 Region3 Group3 60 Region3 Total 245 Region4 Group1 55 Region4 Group2 15 Region4 Group3 10 Region4 Total 80 And I want the data is like this: Region1 Group1 70 Region1 Group2 Region1 Group3 Region1 Total 110 Region2 Group1 210 Region2 Group2 90 Region2 Group3 50 Region2 Total 350 Region3 Group1 170 Region3 Group2 Region3 Group3 Region3 Total 245 Region4 Group1 55 Region4 Group2 Region4 Group3 Region4 Total 80 Thank you!
... View more