Reputation: 1
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
Reputation: 2327
you're missing a closing parenthesis here Date.From(DateTime.LocalNow()
Upvotes: 1