Best way to get total figure to update automatically

kjw298

New Member
Joined
May 21, 2021
Messages
8
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi, I’m hoping somebody can help me. I have created a tracker at work to show new requests that have come in by category and by client. This gets updated every day.

I have used two pivot tables to show the number of requests that are in progress and the number of requests that are complete.

I have a box at the top to show the total number of requests but having a quick search on Google I consolidated the data to get me the total figure. I have now realised that this doesn’t update automatically as the two pivot tables get bigger each day so the total cells move.

Does anyone know of a way where I could get the number to update automatically? I already have to use the filter for the pivot tables to include new dates as I have unticked the blanks so that they’re not shown.

thanks
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
This is pretty straight forward to do with some simple VBA. First figure out your criteria for refreshing: every time the worksheet changes, when the user goes to a different worksheet, when the user leaves a worksheet, etc etc. (See worksheet events here). Then, within that event, simply call Sheet1.PivotTables("PivotTable1").Refreshtable, or if your data is pulled from a query and you want to refresh that too, ThisWorkbook.RefreshAll.
 
Upvote 0

Forum statistics

Threads
1,214,397
Messages
6,119,273
Members
448,883
Latest member
fyfe54

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top