Recent content by homer.favenir

  1. H

    query to split 1 column and sort

    hi to all, can anyone please tell me how to split 1 column and sort it by splitted column. i have 1 table with address column. The address column contains strt # and strt name. e.g. ADDRESS 123 main st. 123 10th avenue. because i need to sort first the strt name before the strt # and...
  2. H

    query to split address column

    hi to all, can anyone please tell me how to split 1 column and sort it by splitted column. i have 1 table with address column. The address column contains strt # and strt name. e.g. ADDRESS 123 main st. 123 10th avenue. because i need to sort first the strt name before the strt # and...
  3. H

    query to delete a record

    156976 != 00156976 great!thanks!!! anyway, i have a followup question. how about if both columns is different e.g. table1.column1 = 156976 and table2.column1 = 00156976 how can i match this two columns? 156976 is different from 00156976 can i use wildcards so that all 156976 = 00156976...
  4. H

    query to delete a record

    hi, i have a problem... the query is if table1.column1 = table2.column1 and table1.column2 = table2.column2,delete. only column1 and column2 of both tables should match and delete the records. the query above is for all columns. correction for the query above? thanks
  5. H

    query to delete a record

    could not delete from table delete table1.* from table1 inner join table2 ON table1.artid = table2.artid where (((table1.artid) = table2.artid)) the error is: could not delete from specified table. i cant see my error here....:D
  6. H

    query to delete a record

    is it okey if the table2 is from mysql?
  7. H

    query to delete a record

    i have a table1 in my msaccess and i linked another table in mysql to ms access, (table2). when table1 matches the record in table2, it will delete the record in table1. my query is delete * FROM Table1 where table1.artid = table2.artid; but it always ask me the value of tbl2.artid, the value...
  8. H

    Sum of two Running Total Fields

    i have two running Total Fields Sum of Total Keyed and Sum of TOtal MBD how can i add them? thanks :confused:
  9. H

    mysql to crystal report

    how can i make a crystal report with mysql? how can i connect them? any help would be appreciated.
  10. H

    how can i maintain the value of a record when i export it to excel? pls help, tnx

    thanks ajetrumpet for the reply!!! ill figure that out. thanks again
  11. H

    Sum of Start Time and End Time, could anyone pls help me...tnx

    thank you very much john!!! it helps me a lot and solve my problem... thanks!!! homer
  12. H

    how can i maintain the value of a record when i export it to excel? pls help, tnx

    when i exported to excel the data changes. e.g. the batch range is 1-20 and the time is 23:00 but when i exported it it becomes a different figure. is my report has the problem? thanks :confused:
  13. H

    Sum of Start Time and End Time, could anyone pls help me...tnx

    when i export the data to excel the "Answer" becomes decimal and not time. i already change the properties of the "Answer" in the report, but it didnt work. what should i do? tnx
  14. H

    Sum of Start Time and End Time, could anyone pls help me...tnx

    thanks John A!!! thank you very much! your good! how did you get that? can you please explain me. you added another field in query "answer", right? and how can i add it on my report? should i add a text box and copy the formula from the form? thanks a lot again. homer
Back
Top Bottom