Search results

  1. B

    to get record from another table

    Hello dear friends; I have 2 table, table1 includes a lots of records. there are a few records in table2. both two table have same structure. I want to write code for to fill table2, when the code starts, it must find recrds of table2 in...
  2. B

    table/field

    Thanks very much, field is including only like that (-2,345.67) , but those doesn't number. all that are text. I will look at Val(String).
  3. B

    Copy from one table to another

    hello you can do so, INSERT INTO table1 ( AA, BB, CC ) SELECT table2.AA, table2.BB, table2.CC FROM table2; AA,BB,CC === COLUMNNAME I hope it function
  4. B

    table/field

    I have update excel file to access table. one of type of table field is text in access table. (because excel field was text). but there is numeric values in text field like -2,345.67 . inorder to sum or to make another mathematichs operrations, I have to turn field type to numeric...
Back
Top Bottom