Hi
@Salman ShaikYou need to put the SQL sentence as a text, with (")
I give you a full example step by step to achive this:
1.- You need to add this VBO
Data - OLEDB2.- To use this you need to follow the next structure:

In the Set Connection action you need to put your connection string.
Try to use something similar to this:
"Provider=Microsoft.ACE.OLEDB.12.0;Data Source="&[ExcelFile]&";Extended Properties='Excel 12.0 Xml;HDR=YES';"
Where the data item ExcelFile is where I have my Excel file.
3.- If the Open action gives you the error "'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine", no worries, just install this:
https://www.microsoft.com/en-us/download/confirmation.aspx?id=13255.4.- In the "Execute" action you need to put the SQL Statement. For this example I have created

And I will replace the * from the Field2 with a "YYYY". (When we define the connection string with HDR=YES, we
indicate that the first row contains columnnames)
"UPDATE [Hoja1$] SET Field2 = Replace(Field2, '*','YYYY')"
After executing this step your excel will be updated.

5.- And finally, Close the connection by using the Close Action.
Hope this is clearer and it solves the problem. If this helps you, remember mark as the best answer!
See you in the Community, bye :)
------------------------------
Pablo Sarabia
Solution Manager & Architect
Altamira Assets Management
Madrid
------------------------------
Original Message:
Sent: 08-06-2022 07:22
From: Salman Shaik
Subject: Find and Replace in Excel
Hi @pablo sarabia
by using the above query i am getting the below error. Pl suggest how to handle
------------------------------
Salman Shaik
Original Message:
Sent: 08-05-2022 22:25
From: Pablo Sarabia
Subject: Find and Replace in Excel
Hi @Salman Shaik
I think, the best way for this is to use Data - OLEDB and replace your special characters by using UPDATE SQL statement.
Something similar to this:
UPDATE [Sheet1$]
SET valueField1 = REPLACE(valueField1,'*','')
This is faster than opening the full Excel and read it.
Hope this helps you! And if this solves the problem, remember mark as the best answer!
See you in the Community, bye :)
------------------------------
Pablo Sarabia
Solution Manager & Architect
Altamira Assets Management
Madrid
Original Message:
Sent: 08-05-2022 20:06
From: Salman Shaik
Subject: Find and Replace in Excel
Hi,
I want to replace some special characters like *,"" with Null in excel before doing further validations. Can you pl suggest me if there is any action available to do in Blueprism?
------------------------------
Salman Shaik
------------------------------