Forum Discussion
simon_70
Dec 21, 2022Copper Contributor
Freeze Excel formula when criteria met
Hello Guys Might be easy but i have a headache here Preface I want the "Days in transit" Colum to stop updating the formula when I select the Yes answer in the "Arrived at destination" Colu...
- Dec 21, 2022
Instead of No/Yes in the Arrived at destination column, I'd leave it blank initially, and enter the date of arrival when the item has arrived. You can then use
=IF(L2="",TODAY(),L2)-G2
OliverScheurich
Dec 21, 2022Gold Contributor
- simon_70Dec 21, 2022Copper Contributor
thank you that helped
Now I just need it to stop counting when yes is selected in "Arrived at destination"
the no logic is working correctly so its something i need to put in the middle i believe
=IF(L3="yes","__not sure what to put here__",TODAY()-G3)
- HansVogelaarDec 21, 2022MVP
Instead of No/Yes in the Arrived at destination column, I'd leave it blank initially, and enter the date of arrival when the item has arrived. You can then use
=IF(L2="",TODAY(),L2)-G2
- simon_70Dec 22, 2022Copper Contributorhey this worked thank you all