Modify fields of a column

Hi! I have to modify all the fields of a column...
I tried this

REPEAT
Address.FIND('-');
Address."Fiscal Code" := '';
Address.MODIFY;
UNTIL Address.NEXT = 0;

but it doesn't work... it crashes...
can anyone helo me please? thank you!

Best Answer

Answers

  • sharon95sharon95 Member Posts: 183
    thanks!
  • KishormKishorm Member Posts: 921
    A more efficient way of doing this (faster performance & less code) is...
    Address.MODIFYALL("Fiscal Code",'');
    
Sign In or Register to comment.