Forum Discussion
udaya1602
Jun 14, 2023Copper Contributor
days count
Using this formula (=DATEDIF(TODAY(),H4,"d")) to count the days left from the date mentioned in H4. if a value is feeded in H4 it is fine. but when H4 is empty it show num error(#NUM!)..
- Jun 14, 2023
udaya1602 Try this:
=IFERROR(DATEDIF(TODAY(),H4,"d"),"")
Riny_van_Eekelen
Jun 14, 2023Platinum Contributor
udaya1602 Try this:
=IFERROR(DATEDIF(TODAY(),H4,"d"),"")
udaya1602
Jun 14, 2023Copper Contributor
Riny_van_Eekelen
Thank you, It works
Thank you, It works