Search results

  1. recyan

    Problem with Search query

    Update : Pls refer Brian's post (POST 12) in : http://www.access-programmers.co.uk/forums/showthread.php?t=245511 Thanks
  2. recyan

    Like "*" filter in query doesn't show blank records

    Just check if below gives some guidelines : http://www.access-programmers.co.uk/forums/showthread.php?t=221558 perhaps, something like : SELECT myTable.TheID, myTable.myField FROM myTable WHERE IIf ( Len(Trim(Forms!Form1!txtmyField))>0, ((myTable.myField) Like "*" &...
  3. recyan

    Really need your help

    I tend to agree with them :D :D :D, but then, you are equally an hero. :)
  4. recyan

    formula for calculating 12 columns in a record

    Do all your fields (Edit : Field_A,Field_B,...., Price_A,Price_B,.....) have values in them ? Thanks
  5. recyan

    Join results of Unmatched query with a matched query to include Null

    Glad you found it helpful. Thanks :)
  6. recyan

    Join results of Unmatched query with a matched query to include Null

    Check keyword "LEFT JOIN". Edit : along with Nz(). Thanks
  7. recyan

    Story

    of information about
  8. recyan

    Story

    Tables loaded with
  9. recyan

    2nd MySQL Dataset not working

    I really don't know, why those two pages are not working at your end. They are working perfectly fine at my end. Sorry, hope some one comes across this thread & shows us some light. Have you tried posting on any php forums? Thanks
  10. recyan

    Most Efficient Way to Store Historical Data

    The "Thanks" button is taking me to the Reply screen???? Thanks Gemma & Pat.
  11. recyan

    Most Efficient Way to Store Historical Data

    Hi, Does above indicate using pseudo autonumber id as primary key, preferably ? Thanks
  12. recyan

    Most Efficient Way to Store Historical Data

    Hi, Can I request you to elaborate on this ? Thanks
  13. recyan

    2nd MySQL Dataset not working

    Decided to check out & wrote a couple of Test Pages. It is working at my end. Note : I was not able to replicate the exact situation at your end due to my limitations of coding in php. All the same take a look. A simple table employees with fields EmpID, EmpName, EmpType_ID The 1st Page...
  14. recyan

    2nd MySQL Dataset not working

    Ok. Thanks
  15. recyan

    2nd MySQL Dataset not working

    Basically, AFAIK, anything after the return statement in the Function should not execute. Just as a trial, try the below & see what happens : 1) Move $query_string->free(); $result1->free(); above return $res_array; inside the function, and see what happens. or 2) Move...
  16. recyan

    2nd MySQL Dataset not working

    Does an echo after the Return statement in the function print. Thanks
  17. recyan

    New to here

    Usually the moderators or more senior members welcome you immediately. Occasionally, it so happens that they are not around. Don't feel dis-heartened. Start posting your questions & I am sure you will be more than happy with the replies & the guidance that you get. By the way, Till Some one...
  18. recyan

    2nd MySQL Dataset not working

    AFAIK, loading 2 data sets should not be a problem. Don't have the solution, all the same, just check out if u have not done the below. 1) have you checked the page source for the final page which throws up the error, to see if you can get any hint. 2) Have you tried putting in a few echo or...
  19. recyan

    Query between two selected records

    Glad you found it helpful. Thanks :)
  20. recyan

    Query between two selected records

    Till someone comes along, just check out if below gives some guidelines : SELECT Table2.CLIENT, Table2.PRODUCT, Table2.MIN_NUMBER, Table2.MAX_NUMBER, Table1.Client, Table1.Product, Table1.Number, IIf([Number] Between [MIN_NUMBER] And [MAX_NUMBER],[Number],0) AS ValidNumber FROM...
Back
Top Bottom