Re: Issue1-3
These are all somewhat related, so addressing together. In the MasterData worksheet, column order needs to match source sheets order. This is because in this data transfer, we are copying the data directly from sheet to sheet. We were able to change order when going from Master -> DP because Adv.Filter doesn't care about order, just needs to have matching column headers. If we re-arrange MasterData, it will mean increasining # of copies we needs to do (rather than a large block, would have to copy 1 column at a time), increasing processing time. Is this something you still want to pursue?
Because of the header relationship in Adv.Filter between Master -> DP, and just a copy relationship between source ->Master, there is no requirement from code perspective to have column labels in Master match source. They just have to match DP. I've manually changed the column labels to match source, for now. These sheets will not be updated in the WS-H Sync macro, due to the differences in column order. These column names are also hardcoded into macros, so
caution should be used when changing. These headers could be adjusted manually by Super Admin, if needed, but macros would also need to be updated.
Change Control # has been added to DP. Currently sits in col T.
Note that because of AdvFilter's ability, we can re-arrange these columns to whatever order you like, if re-arrangement is desired.
Re: Charts
I'm not sure Pie Charts would work well in this situation, as you have multiple categories and multiple statuses. We could only effectly chart one category at a time, showing the different statuses. Also, can't guarantee that slices are arranged in descending order of magnitude, so hard to see total value (this may not be needed since data table is present). This is Pie chart of category "Open"
Another idea might be a stacked bar chart
I've purposely made this chart same size as pie, but it shows much more information. Can implement the "changing chart" idea. Could go with option buttons, or a single button (we change caption depending on what chart is visible). I've put in the bar chart for now, with an example button.