Sakshi0206
New Member
- Joined
- Feb 27, 2015
- Messages
- 28
Hi,
I have a file with few sheets. I have created different macros on all the sheets accept Sheet 1.
Now on sheet 1 i want to create a drop down. I want that every time the value in the drop down is changed the file is recalculated. After the recalculation is completed i want it to run few macros i created on other sheets.
The Macro i am trying on Sheet1 (not modules) is:
Private Sub Worksheet_CurrencyChange(ByVal Target As Range)
If Target.Address = "$C$11" Then
Calculate
Call CurrencyPL
Call CurrencyCFS
Call CurrencyBS
Call CurrencyLoans
Call CurrencyLoans1
End If
End Sub
It is not doing anything. I have tried to create a separate macro to calculate the file and call it here but it is also not working.
Can anyone help me with this?
I have a file with few sheets. I have created different macros on all the sheets accept Sheet 1.
Now on sheet 1 i want to create a drop down. I want that every time the value in the drop down is changed the file is recalculated. After the recalculation is completed i want it to run few macros i created on other sheets.
The Macro i am trying on Sheet1 (not modules) is:
Private Sub Worksheet_CurrencyChange(ByVal Target As Range)
If Target.Address = "$C$11" Then
Calculate
Call CurrencyPL
Call CurrencyCFS
Call CurrencyBS
Call CurrencyLoans
Call CurrencyLoans1
End If
End Sub
It is not doing anything. I have tried to create a separate macro to calculate the file and call it here but it is also not working.
Can anyone help me with this?