DTSDestination("ItemDescription") = DTSSource(Replace("ItemDescription",char(34),"\""))
Main = DTSTransformStat_OK
# i also tried
DTSDestination("ItemDescription") = Replace(DTSSource("ItemDescription"), Char(34), "\"")
Main = DTSTransformStat_OK
# the \ messed the script up then i tried 2 single quotes but nothing happend.
|