Forum Discussion
Hogstad_Raadgivning
Dec 09, 2022Iron Contributor
Is any if the functions considered as volatile functions? (or will they slow down the performance?)
Hi, I am debugging a workbook to investigate why it is so slow. In many rows I find this formula: INT(YEARFRAC(RIGHT(E276;8);C276)) Best regards - Geir
- Dec 09, 2022
No, none of those is volatile. The volatile Excel functions are:
RAND(), NOW(), TODAY(), OFFSET(), CELL(), INDIRECT(), INFO(), RANDBETWEEN(), RANDARRAY(), and in some situations (but usually not) SUMIF.
HansVogelaar
Dec 09, 2022MVP
No, none of those is volatile. The volatile Excel functions are:
RAND(), NOW(), TODAY(), OFFSET(), CELL(), INDIRECT(), INFO(), RANDBETWEEN(), RANDARRAY(), and in some situations (but usually not) SUMIF.
- Hogstad_RaadgivningDec 09, 2022Iron ContributorGreat, thank you.