Search results

  1. khawar

    invoices (contracts)

    File is attached as per your requirement Check the query "YourRequirement"
  2. khawar

    update query with subqueries, not updateable

    Make a temporary table from selected data and then main table with data from that temporary table
  3. khawar

    multiple tables query

    Try union queries
  4. khawar

    Show data other file

    SELECT Table2.ename FROM Table2 in 'F:\database.mdb' ;
  5. khawar

    Help! Monthly Summary Query

    Query works on only two month but in your case it spans over more than 2 months for this you have to write vba code
  6. khawar

    Help! Monthly Summary Query

    Below is a sample attached for you
  7. khawar

    Yearly Summary

    Try this TRANSFORM Count(CCF.CCFNo) AS CountOfCCFNo SELECT CCF.CustomerACNo,Format([RaisedDate],"yyyy") FROM CCF GROUP BY CCF.CustomerACNo PIVOT Format([RaisedDate],"mmm") In ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
  8. khawar

    Printing Ranges

    your where claus will be some thing like this where location in(2,3)
  9. khawar

    how to calculate total

    Use running sum in report it is the place where you can handle this type of things better
  10. khawar

    Query saves - Won't run

    upload sample database
  11. khawar

    Running Total for every record

    Check my post here it will give you some idea
  12. khawar

    Query to contain null values

    Check the attached file Employee A has reward and employee B doesn't have any but query shows both employees
  13. khawar

    choosing from Detailed or Summary reports

    You can use an option group on the basis of which it can be decided which report to run
  14. khawar

    Try this one its more flexible http://www.access-programmers.co.uk/forums/showthread.php?t=170431

    Try this one its more flexible http://www.access-programmers.co.uk/forums/showthread.php?t=170431
  15. khawar

    Need help with critera not equal to 20,30,or 40

    not in(20,30,40)
  16. khawar

    Need help with SQL, dates and surrounding dates.

    Use another query and select distinct dates from first query
  17. khawar

    Need help with SQL, dates and surrounding dates.

    A quick sample to add extra dates is attached I have just added one table with one field Check data in the table first then open query "RequiredQuery"
  18. khawar

    Access 2007 Attachment and Listbox Control

    Yes it is possible use attachment field as row source of listbox
  19. khawar

    Begining Balance Qry & Reprt

    Opening balance is a balance before some selected date you can easily calculate it using query
  20. khawar

    Count number of distinct weekdays in Group By

    Can you describe your table columns
Top Bottom