Hi I am trying to use pivot tables to create a series of graphs for a dashboard of sorts.
I have data sets for a series of locations over a long time horizon and will be filtering by date and location.
The issue that I have is the majority (but not all) of the data points are a balance/data point at a point in time rather than a transaction or movement. As such summing the values is incorrect (balance vs transaction).
The data table is laid out as follows.
I would like to be able to show the graphs either in full quarterly detail over several years or on an annual basis which would mean summing some information NetAbs (which is a movement per period) and taking the last available value for each annual period for balance data points.
Is this possible or will I have to use the new dynamic array functions to try and create a series of calculated rows of data etc? It seems like PIVOT tables should be perfect but I cant get it to work
Any help is greatly appreciated.
I have data sets for a series of locations over a long time horizon and will be filtering by date and location.
The issue that I have is the majority (but not all) of the data points are a balance/data point at a point in time rather than a transaction or movement. As such summing the values is incorrect (balance vs transaction).
The data table is laid out as follows.
Year | Quarter | Date | Sector | Market | Stock_P | Vacancy_P | Prime Vacancy (%) | NetAbs_P | Prime Net Face Rent $ sqm p.a. | Prime Incentive % |
2000 | 4 | 36891 | Office | Sydney CBD | 493,674 | 30,369 | 2% | -20000 | 150 | 10% |
2001 | 1 | 36981 | Office | Sydney CBD | 493,674 | 23,306 | 3% | 23000 | 155 | 10% |
2001 | 2 | 37072 | Office | Sydney CBD | 493,674 | 38,669 | 4% | 15000 | 155 | 12% |
2001 | 3 | 37164 | Office | Sydney CBD | 493,674 | 42,846 | 2% | 4000 | 157 | 10% |
2001 | 4 | 37256 | Office | Sydney CBD | 493,674 | 46,163 | 3% | -3000 | 158 | 14% |
2002 | 1 | 37346 | Office | Sydney CBD | 493,674 | 42,538 | 4% | 2500 | 160 | 10% |
I would like to be able to show the graphs either in full quarterly detail over several years or on an annual basis which would mean summing some information NetAbs (which is a movement per period) and taking the last available value for each annual period for balance data points.
Is this possible or will I have to use the new dynamic array functions to try and create a series of calculated rows of data etc? It seems like PIVOT tables should be perfect but I cant get it to work
Any help is greatly appreciated.