vbahelper123

New Member
Joined
Aug 20, 2016
Messages
3
Hello!
Is there a way to calculate a sheet until a cell is ≠ False in VB?

I have cells Q92:V92 with IF statements
"=IF(AND($O$101>98%,$O$101<99%),$B$99,FALSE"

I just want the sheet to continue to calculate until one of those cells becomes true and displays a number instead of constantly hitting the calculate now button.
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
I did not know about this function! Thank you! I keep getting a compile error #dontknowwhatimdoing

Sub SpecialCells()
Range(Range(“Q92:V92”).SpecialCells(xlNumbers).Calculate
End Sub
 
Upvote 0
You can use ctrl-h replace = with = on the worksheet, or .formula = .formula in VBA to recalculate formulas appearing as strings
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,613
Messages
6,125,834
Members
449,266
Latest member
davinroach

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