以下是引用wxzd123在2023-6-19 05:42:44的发言:
版主您好,请问如何加一个判断是否包含A0,如果包含就执行 excel.Cells.Replace ChrW(&hA0), ""语句,谢谢
加个查找判断。但要看具体情况,不只是A0才会出现?,所有VFP不能识别的字都会被换成?
程序代码:
wA0 = ChrW(&hA0)
if not excel.Cells.Find(wA0) is nothing then
excel.Cells.Replace wA0,""
end if