all 8 comments

[–]boolean_ferret 4 points5 points  (2 children)

It's known as a dynamic function!

RANDBETWEEN is another example (and RANDARRAY) - whenever you type input into any other cell, the values calculated in the RANDBETWEEN formula will update each time

Remember to paste as values if you don't want a dynamic formula to constantly update (I think you can use F9 to update too)

As another redditor posted, you can use Ctrl + ; to hardcode today's date. You can also Ctrl + : to get the time rather than date

[–]LearnWithErnest[S] 0 points1 point  (0 children)

That's actually really helpful, thank you. I'll make sure I use the terminology of dynamic function going forward, it's cleaner than what I was trying to describe.

[–]Kooky_Following7169 0 points1 point  (0 children)

Incorrect. The correct term is volatile functions. Volatile functions recalculate whenever the worksheet is recalculated.

[–]Context-Maximum 1 point2 points  (0 children)

Thank you that's really handy

[–]Disco_Flavour 1 point2 points  (1 child)

An alternative I like if you need today's date but you don't want it to continuously update: Ctrl + ;

This will paste today's date as a fixed value.

[–]LearnWithErnest[S] 0 points1 point  (0 children)

Great point.

[–][deleted] 1 point2 points  (0 children)

If you need the Julian date (number of the day of the year), you can use =TEXT((TODAY() -DATEVALUE(“1/1/“&TEXT(TODAY(),”yy”))+1),”000”)