From a Run on a table, we can use the functionality Find & Replace.
But ... when you put . (dot) or * (star) in the field "Find what", the field "replace with" becomes anavailable.
Any trick to avoid that ? We have to replace all dots in "Phone No." (table Contact) with another character ...
Thx and Regards,
0
Comments
Microsoft Dynamics NAV Developer
IF Test.find('-') THEN
REPEAT
IF STRPOS(test.desc,'.') > 0 THEN BEGIN
test.desc := CONVERTSTR(test.desc,'.','*');
or
test.desc := DELCHR(test.desc,'=','.');
test.modify;
END
UNTIL test.NEXT = 0;
UK
Question from my customer is : How to do that without coding anything ?
So, I assume answer is : "No way !" . :whistle: