Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Noob_Coder

    Modify specific field of the table by FIELD()

    Thank You Olaf. This trick with parenthesis helped me. It works perfectly Code is now cleary.. GOTO 3 REPLACE (FIELD(2)) WITH "test" insteed GOTO 3 myfield = FIELD(2) REPLACE &myfield WITH "test" It is part of my program to convert table data to csv file. I have empty table with two cols...
  2. Noob_Coder

    Modify specific field of the table by FIELD()

    Hi all experience Foxies, I have table named table1 which has two colums named col1 and col2. I want set field of the table1 on position [3,2] by string value "test". I now use: GOTO 3 myfield = FIELD(2) replace &myfield WITH "test" It works, but it is not so clear as opposite process...

Part and Inventory Search

Back
Top