Reputation: 448
=DAYS( =DATE(2019, 6, 27), =TODAY() )
Here I have a simple expression with nested functions that I can't seem to figure out. I keep getting a parse error. I've read the docs for all three of the involved functions but I cannot find an answer. Any suggestions to what I might be getting wrong?
Upvotes: 0
Views: 28
Reputation: 1
if you combine them then you need only leading =
. try like this:
=DAYS(DATE(2019, 6, 27), TODAY())
Upvotes: 1