Need workbook to refresh when I change dropdown list value

jaguinaga

New Member
Joined
Aug 10, 2021
Messages
21
Office Version
  1. 365
Platform
  1. Windows
I have two separate values in my data validation drop down list. I need a set of pivot tables to refresh automatically when I select the different dropdown options (A or B). What can I do to add a refresh?
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Hi maybe the following,

Be sure to save a test copy of your workbook

Right Click Sheet tab / View Code / In the VBA prompt Change General in drop down to Worksheet

Note that for every event change, this sheet will RefreshAll. If your only changing 1 drop down selection this should be ok.

VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

    ThisWorkbook.RefreshAll

End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,214,979
Messages
6,122,557
Members
449,088
Latest member
davidcom

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