Vlookup modern activity errror

Hi Team,
I am getting some error mention below when i used vlookup modern activity and lookup value is not a null,but lookup does not match.

If your lookup value is a number, force UiPath to treat it as a string:
CStr(yourLookupValue)
eg: CStr(row(“LookupColumn”))

i could not understand

Correct me if I’m wrong I think your Result variable is of type Int32 which is incorrect.

it should be of type Excel

  • Save to - Click Plus on the right side of the field and then, from the menu, select where to save the result:

  • Select an Excel file and then a named cell, or select Indicate in Excel to indicate a cell from the file.

  • Save for Later Use - Save the result for later use in your project as input for another activity.

  • Open in Advanced Editor - Enter a VB expression.

Hello,

If your lookup value is a number, force UiPath to treat it as a string:
CStr(yourLookupValue)
eg: CStr(row(“LookupColumn”))

Hi, create a variable of type object and use that variable instead.

@JK_MECH

the error suggests your output variable is of wrong type…

I guess you gave int32…if so change result type to Object

cheers