(1)I realise to align WITH price updates , i need to use
- Code: Select all
If Target.Columns.count <> 16 Then Exit Sub
or
- Code: Select all
If Target.Columns.count = 16 then
(... my code ..... )
end if
But what if : i had several steps in my calculations - which would be outputted to the sheet - WITHOUT further reference to the price data - where the output of the prior step, is a input to the next step
How could i have excel execute the 7 refreshes - in between the refresh from Target.Columns.count = 16
With my BA refresh rate at 1 sec - i would have to wait 1 second for each step to complete and refresh the sheet.
(2) 2nd query: Can anyone give me a nutshell explaination when to use the following different procedures - what exactly each means !
(a)
- Code: Select all
Private Sub Worksheet_Change(ByVal Target As Range)
and
(b)
- Code: Select all
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Hope this makes some kind of sense !
