Hi,
I am using a custom function in VBA to check whether a range contains a particular value or not and it works fine. Here is the code -
Function searchValue(fromSheet As Worksheet, value As String, col As String) As Integer Set findrange = fromSheet.Range(col).Find(What:=Trim(value)...