This is probably a simple fix, but I'm really new to Power Query and can't find an answer. I'm trying to compare square footage between two systems, but want to ignore any potential rounding differences less than -10 or greater than +10.
My original formula was [#"Sqaure Foot A"] = [#"Square Foot B"]
The result comes back TRUE or FALSE, which is the format I want
I've tried this:
if [#"Square Foot A"] - [#"Square Foot B"] > -10 and [#"Square Foot A"] - [#"Square Foot B"] < 10 then "TRUE" else "FALSE"
This one seems to work until I load it to a table. Then I get the error: "We cannot convert the value null to type logical."
Any thoughts on what I'm missing?
My original formula was [#"Sqaure Foot A"] = [#"Square Foot B"]
The result comes back TRUE or FALSE, which is the format I want
I've tried this:
if [#"Square Foot A"] - [#"Square Foot B"] > -10 and [#"Square Foot A"] - [#"Square Foot B"] < 10 then "TRUE" else "FALSE"
This one seems to work until I load it to a table. Then I get the error: "We cannot convert the value null to type logical."
Any thoughts on what I'm missing?