Hi All,
I have a column 'TestColumn1' to be updated in excel file using sql query. The column type is General and it has few rows which has numeric values and one of the number starts with apostrophe ' as it has 0 in the beginning. while updating i am using following query.
%NewVar% = 1234,0567
UPDATE [Sheet1$]
SET [TestColumn2]= 'Pass'
WHERE [TestColumn1] IN (%NewVar%)
Result is it is only updated for number 1234.
Any hint please?