Leviathan_the_Great
Leviathan_the_Great

Reputation: 448

Simple formula using nesting giving parse error

=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

Answers (1)

player0
player0

Reputation: 1

if you combine them then you need only leading =. try like this:

=DAYS(DATE(2019, 6, 27), TODAY())

Upvotes: 1

Related Questions