Hunt86
Hunt86

Reputation: 1

What am I writing wrong?

I have written the followigen forumule in Power Query Excel:

if [DATUM_LEVERBAAR_VANAF] >= Date.FromDateTime.LocalNow() 
and [DATUM_LEVERBAAR_TM] = null 
or [DATUM_LEVERBAAR_TM] >= Date.From(DateTime.LocalNow() 
then "Ja" else "Nee"

I'll get the Token comma expected error, what am I writing wrong?

Upvotes: 0

Views: 37

Answers (1)

you're missing a closing parenthesis here Date.From(DateTime.LocalNow()

Upvotes: 1

Related Questions