I have a worksheet that has a lot of formulas and every time i'm clicking around the sheet it hangs as it calculates the formulas. The majority of my formulas are IF or CountIF statements such as the following
=IF(AD13>0,1,0)
=IF(G13>0,(G13-F13)/7,0)
=COUNTIF(B4:B123,AF3)
The first and second if statements above is in every cell within the range AD4:AD123 and AE4:AE123
I have very little knowledge of writing VBA so was wondering if there is some VBA code that can easily carry out the calculations for the if and CountIF statements above that will reduce the amount of times the spreadsheet hangs whilst its calculating the formulas.
Any help is greatly appreciated. Thanks
=IF(AD13>0,1,0)
=IF(G13>0,(G13-F13)/7,0)
=COUNTIF(B4:B123,AF3)
The first and second if statements above is in every cell within the range AD4:AD123 and AE4:AE123
I have very little knowledge of writing VBA so was wondering if there is some VBA code that can easily carry out the calculations for the if and CountIF statements above that will reduce the amount of times the spreadsheet hangs whilst its calculating the formulas.
Any help is greatly appreciated. Thanks