Recent content by E_Gold

  1. E

    how to remove zero from the begining of a string in access by query ?

    thanks for the help, but val(string) work fine only for numbers. if i try val(A000123) i'll get 0 how to remove zero for not only numbers ?
  2. E

    how to remove zero from the begining of a string in access by query ?

    hi how to remove zero from the begining of a string in access by query ? for example: 00001234 -> 1234 000abc -> abc thanks in advance
  3. E

    help with access query - numerate on table

    thanks for the help, but i cant see something that will help me
  4. E

    help with access query - numerate on table

    hi i neet to numerate my table from 1 to when ID change. for example i have this table: ID | Name ====== 11 | AA 11 | BB 11 | CC 11 | DD 22 | EE 22 | FF 33 | GG 33 | HH 33 | AA 33 | DD 44 | ZZ and i need to see this: NUM | ID | Name ============ 1 |11 | AA 2 |11 | BB 3 |11 | CC 4...
  5. E

    help with access query add numerator column

    it Text field
  6. E

    help with access query add numerator column

    i sort by the first column
  7. E

    help with access query add numerator column

    it will be like this MEN === AA | 1010 | 1 BB | 2020 | 2 CC | 3030 | 3 CC | 4040 | 4 DD | 5050 | 5
  8. E

    help with access query add numerator column

    is there any solution for this ? i only need to add column that contain numbers from 1 - to the end of the table
  9. E

    help with access query add numerator column

    hi i have table MEN with field name and ID (not unic) like this: MEN === AA | 1010 BB | 2020 CC | 3030 DD | 4040 how to run any query that can add column that has numerator ? like this: MEN === AA | 1010 | 1 BB | 2020 | 2 CC | 3030 | 3 DD | 4040 | 4
  10. E

    help with access and C# error

    hi i try to reverse string on access in sql query and C# like this: SQL = "SELECT StrReverse(Des) from MyTbl"; dsView = new DataSet(); adp = new OleDbDataAdapter(SQL, Main.Conn); adp.Fill(dsView, "MyTbl"); adp.Dispose(); dataGridView1.DataSource = dsView.Tables["MyTbl"].DefaultView; and i...
  11. E

    help with access query

    Thanks !!!! its work !!!!
  12. E

    help with access query

    i need to count where the qty>0 and where the qty=0 like this: i have this table Serial | Qty | NewQty ============== 700 | 1.3 | 0 700 | 4.2 | 4 700 | 9.3 | 0 700 | 5.5 | 5.3 900 | 1.1 | 0 900 | 2.2 | 5.3 i need to see this Serial | count1 | count2 ===============...
  13. E

    help with access sql query

    hi i have 2 tables: A: serial , Name , Memo B: serial , Name , Memo i have another table: C: serial , Name , NewName , Memo , NewMemo , Status i need to fill table C in this condition: 1. A:Name = B:Name and A:Memo = B:Memo -> insert to table C and status = 0 2. A:Name <> B:Name or...
  14. E

    Question i got error on my access query with replace([Items.Des]," ","")

    i got error on my access query SELECT CounterG.barcode, CounterG.qty, CounterG.Des, Items.barcode, Items.numH, Items.Des FROM Items INNER JOIN CounterG ON replace([Items.Des]," ","") = replace([CounterG.Des]," ","") ; i got error on: replace([Items.Des]," ","") how to fix it ?
  15. E

    how to get the last Increased number in access after inserting new record to database

    hi i have table MEN in access that contain unique key generation (auto increased field) when i insert record to database, this field increase. how to read this value ? is there way to read this value when i insert the record ? thanks in advance
Top Bottom