Forum Discussion
sfalk781
6 years agoHelper II
Token Comma Error w/ If Statement
Hey Everyone - I have this formula in Power Query that looks like this: =if [Provided Date]>= Date.From(DateTime.LocalNow() then "Up To Date" else 0 I'm trying to have it look at the "provided d...
- 6 years ago
You need to close parentheses for your Date.From. Add another after .LocalNow())
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
mahoneypat
6 years agoMicrosoft Employee
You need to close parentheses for your Date.From. Add another after .LocalNow())
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
sfalk781
6 years agoHelper II
Thank you for your help.