C Cheryl New member Local time Today, 15:12 Joined Sep 28, 2009 Messages 1 Sep 28, 2009 #1 I have an imported table with lots of info in inverted commas such as "my name" "business type" etc. Is there a way to remove all the inverted commas? There are thousands of records so doing them manually is not an option. Thanks in advance
I have an imported table with lots of info in inverted commas such as "my name" "business type" etc. Is there a way to remove all the inverted commas? There are thousands of records so doing them manually is not an option. Thanks in advance
khawar AWF VIP Local time Tomorrow, 02:12 Joined Oct 28, 2006 Messages 870 Sep 28, 2009 #2 You can use the replace function to update data Like Replace("My Name",'"','""')
G Galaxiom Super Moderator Staff member Local time Tomorrow, 08:12 Joined Jan 20, 2009 Messages 12,895 Sep 28, 2009 #3 khawar said: Replace("My Name",'"','""') Click to expand... That would replace one double quote with two. You need: Code: Replace([fieldname],'"',"")
khawar said: Replace("My Name",'"','""') Click to expand... That would replace one double quote with two. You need: Code: Replace([fieldname],'"',"")