I have 2 data sets that I am trying to join. The only 2 similar fields is an account number and a value. However, there can be many of the same account values repeated over and over again so I need to join on the value to get a more accurate join. The problem is that my values do not match exactly. For example, source A has an amount of $70.80 while source B has an amount of $70.81. I tried using the FLOOR formula on each source so I can truncate the amounts to a whole dollar value, but I'll run into a situation where source A value is $639.99 and source B amount s $640.01, so those will fall out of my join even if i truncate to a whole dollar amount. Is there any way that I can reasonably achieve this?