View Single Post
 
Old 08-31-2017, 11:03 PM
ArviLaanemets ArviLaanemets is offline Windows 8 Office 2016
Expert
 
Join Date: May 2017
Posts: 949
ArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant future
Default

To have MATCH to return the position of nearest value, the column where you search for match (99 in your example) must be sorted in right order - otherwise when you are searching match p.e. for 5 in values list 1, 3, 6, 4 in growing order, the result will be 2 (the position of number 3) instead of 4 - because at position 3 is number 6 which is greater than 5. And value list 1, 3, 2, 4, 6 for same example will give also 2 as result, as at position 3 is number smaller then previous one.
Reply With Quote