SOLVED

Identify a mismatch based on a range

Brass Contributor

Hello,

 

I have the below data of prices. There are prices in which there is an insignificant difference i.e. 1 penny. I need a formula to identify prices that there is a significant difference say by more than a full dollar and insignificant ones i.e. anything less than a dollar. and present it as is below.   

 

ABC
Vendor 1Vendor 2Difference
1236.831199.72Significant
1562.311359.26Significant
1669.451669.44Significant
1842.721789.1Significant
1707.921656.67Significant
1046.651046.64Insignificant
1533.431489.1Significant
2153.162090.25Significant
1866.011866Insignificant
2211.152211.14Insignificant
2220.812220.8Insignificant
2028.011968.85Significant
2943.482547.07Significant
3441.752959.89Significant
2366.532050.9Significant
2769.742688.32Significant
3789.593789.58Insignificant
1 Reply
best response confirmed by shade206 (Brass Contributor)
Solution

Hi @shade206 

 

You can use this formula:

=IF(A2-B2<1,"inSignificant", "Significant")

<1 mean the difference between the two prices is less than 1 , so you can change the number that fits your needs

1 best response

Accepted Solutions
best response confirmed by shade206 (Brass Contributor)
Solution

Hi @shade206 

 

You can use this formula:

=IF(A2-B2<1,"inSignificant", "Significant")

<1 mean the difference between the two prices is less than 1 , so you can change the number that fits your needs

View solution in original post