Jesur H. answered 10/14/23
Can coach you to greatness
There’s a couple ways you can go about this. You can use a linear and logical method. This linear method will give you the basic answer of a difference while the logical method will give you flexibility to ask questions within the possible difference.
Below are a few ways to display the difference between 2 columns of data using:
A1 = 57
B1 = 22
The answer could show up in Cell C1 if you’d like so you can see it side by side.
Linear way:
Subtraction:
A1-B1 = 35
Logical:
Equal to:
A1=B1 = False
If statements:
if(A1>B1, “A is greater”, “B is greater or equal to”)
the above evaluates if A is greater than B then gives some outputs.
or
if(A1=B1, “this is equal”, “this is unequal”)
Whereas this function uses two logical statements to validate if this situation is equal or not)
Hope this helps!