Forum Discussion
[Expression.Error] We cannot convert the value null to type Logical.
- 4 years ago
This part needs to be made conditional
if Row[Charge To Home BU]
This needs a conditional operator say
if Row[Charge To Home BU] <> null
- 4 years ago
There's a nifty null coalesce operator ?? now. This allows for handling null checks compactly.
if Row[Charge To Home BU] ?? false then ...This is a shortcut for
if (if Row[Charge To Home BU] = null then false else Row[Charge To Home BU]) then ...The operator is documented here (scroll all the way down to the end):
https://docs.microsoft.com/en-us/powerquery-m/m-spec-operators
Hi fzhang ,
Could you tell me if your problem has been solved?
Both Vijay_A_Verma and AlexisOlson 's suggestions are good.
If you are still confused about it, please provide me with more details about your problem. For example, provide some screenshots.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.