Find and replace for Vlookup activity problem


Hi guys,
Please let me solution about how can i fix the problem as attached.

Thanks and regards
Mehran

Possible Causes and Solutions:

  1. Excel is Busy / Cell Is Being Edited
  • Cause: Excel might be open and a cell is being actively edited or selected.
  • Solution: Close all Excel windows or make sure no cell is in edit mode. Use the “Kill Process” activity to close Excel before writing.
  1. Incorrect Format in Data
  • Cause: You’re trying to write an invalid or unsupported value (e.g., DBNull, Nothing, or malformed formulas).
  • Solution: Make sure the data you are writing is not empty, or convert it using ToString() if needed. Also, validate data types before writing.
  1. Wrong Formula Format
  • Cause: If you’re writing a formula (like =VLOOKUP(...)), commas must be used instead of semicolons depending on your system’s regional settings.
  • Solution: Use this format for formulas in UiPath:
    =VLOOKUP(A2,Sheet2!A:B,2,FALSE)
    (Use commas, not semicolons).
  1. Excel Dialog Box Is Open
  • Cause: A popup (like a Save prompt, password prompt, or alert) is open in Excel during the write operation.
  • Solution: Ensure no dialog box is open in Excel. Automate Excel silently or use the “Excel Application Scope” with Visible unchecked.

If you found this solution is correct than please mark it as SOLUTION

Happy Automation

Hi @Mehran_Mohajeri

Check below lik,

If you found helpful, feel free to tick as a solution.
Happy Automation