I'm trying to rid my file of all VOLATILE functions; the only one remaining is a single NOW() function, however there are a few hundred cells who depend on that Now() value, so my understanding is that even though only on cell is technically 'volatile', I've effectively turned it into several hundred volatile cells because each of those dependents is going to get recalculated each time NOW() changes (which is literally every second, right?)
So 2 Q's:
1) Am I correct in my understanding that even though I'm only using a single volatile function in a single cell, Excel's dependency tree means each of the several hundred dependent cells are now being forced to recalculate every second, thus essentially rendering them all 'volatile' too?
2) Is it possible to instruct Excel to perhaps only recalculate the current time -- i.e. the NOW() value -- every, say, 60 seconds? Essentially that would reduce the decimal 'precision' of NOW() from on-the-second to on-the-minute.
So 2 Q's:
1) Am I correct in my understanding that even though I'm only using a single volatile function in a single cell, Excel's dependency tree means each of the several hundred dependent cells are now being forced to recalculate every second, thus essentially rendering them all 'volatile' too?
2) Is it possible to instruct Excel to perhaps only recalculate the current time -- i.e. the NOW() value -- every, say, 60 seconds? Essentially that would reduce the decimal 'precision' of NOW() from on-the-second to on-the-minute.