Should of mentioned its for a find row but some tweaking and it works beautifully
GoExcel.TitleRow = 10
GoExcel.FindRowStart = 11
i = GoExcel.FindRow(iProperties.Value("Custom", "Project_BOM"), "BOM", "Manufacturer Part No.", "=", iProperties.Value("Project", "Part Number"))
If i = -1
iProperties.Value("Project", "Stock Number") = "This Part Number is number is not in the Project BOM"
Else
Dim CellValue As String = GoExcel.CurrentRowValue("P&ID Tag(s)")
Dim StrArray As Object
Dim StrResult As String = ""
StrArray = Split(CellValue,vbLf)
For i = LBound(StrArray) To UBound(StrArray)
If StrResult = "" Then
StrResult = StrResult & StrArray(i)
Else
StrResult = StrResult & " " & StrArray(i)
End If
Next
iProperties.Value("Project", "Stock Number") = StrResult
End If
Thank you so much!