Hi all. I wish to apply to different conditional formats to the one pivot table. First one operates only on the first data column and the second works on all subsequent data columns.
My data is plotting spend over a year for different offices. a single office may have multiple months of spend. The conditional format is to identify only the first month for each office.
For example,
Ascot has spend in July, Aug, and September but Morayfield only has spend in October. Another store, Ashfield, has spend in August and then again in November. I want the first month of recorded spend to be highlighted.
When I have used this method before, the spend data was calculated alongside of the pivot table., not within it. Two different conditional formats were used. The first was on the first column, July. for the whole column, if there was a value in that column greater than zero, fill that cell with RED.
Then from Aug (E) column to the June (N) column (Australian Fin Year is July to June):
IF(AND(SUM($E6:E6)=0,F6<>0),1,0) which tests column E (July) and F (Aug). If E =0 and F <> 0, apply 1. This would then be filled red and indicates that the first value for that office is in August
so how do i get both conditional formats into the pivot table and able to be refreshed as the data set improves.
My data is plotting spend over a year for different offices. a single office may have multiple months of spend. The conditional format is to identify only the first month for each office.
For example,
Ascot has spend in July, Aug, and September but Morayfield only has spend in October. Another store, Ashfield, has spend in August and then again in November. I want the first month of recorded spend to be highlighted.
When I have used this method before, the spend data was calculated alongside of the pivot table., not within it. Two different conditional formats were used. The first was on the first column, July. for the whole column, if there was a value in that column greater than zero, fill that cell with RED.
Then from Aug (E) column to the June (N) column (Australian Fin Year is July to June):
IF(AND(SUM($E6:E6)=0,F6<>0),1,0) which tests column E (July) and F (Aug). If E =0 and F <> 0, apply 1. This would then be filled red and indicates that the first value for that office is in August
so how do i get both conditional formats into the pivot table and able to be refreshed as the data set improves.