Search results

  1. khawar

    Crosstab Query

    Can you give some detail about table and field names
  2. khawar

    Crosstab Query

    enter from to year in your query row field
  3. khawar

    Help with expression builder...

    If you get this error because you are dividing by zero than you can change the expression as below =iif([text36]=0,0,[Text111]/[text36])
  4. khawar

    Help with expression builder...

    sum(iif([TradeStatus]="Completed" and [Product]="Spot",1,0))
  5. khawar

    Help with expression builder...

    Your can limit data in the query by filtering the date field such as where year(orderdate)=year(date())
  6. khawar

    Help with expression builder...

    Try this sum(iif([TradeStatus]="Completed",[Trade Amount],0))
  7. khawar

    Help with expression builder...

    I misunderstood you can use aggregate query to get this in the criterea row of query enter "completed" and count the column tradestatus
  8. khawar

    Help with expression builder...

    this expression has to be used in report
  9. khawar

    Help with expression builder...

    Use this expression sum(iif([TradeStatus]="Completed",1,0))
  10. khawar

    fill the empty cells in a table

    You can use update query to fill empty cells
  11. khawar

    Duplicate validation in VBA SQL

    You can use dlookup to check whether this id already exist
  12. khawar

    Forms and required fields

    Add some validation for fields in vba in before update event of form
  13. khawar

    how to find all records entered yesterday and none today

    Try this sql SELECT TbleDailyReports.ID, TbleDailyReports.ReportDate, TbleDailyReports.ProductNumber, TbleDailyReports.SerialNumber, TbleDailyReports.Status, TbleDailyReports.EndingNumber, TbleDailyReports_1.ProductNumber FROM TbleDailyReports LEFT JOIN TbleDailyReports AS...
  14. khawar

    SQL question

    Yes these are enough
  15. khawar

    SQL question

    Start by downloading three things which i told you these are free
  16. khawar

    SQL question

    That is mysql 5.1
  17. khawar

    SQL question

    Here is the link where you can find all stuff http://dev.mysql.com/downloads/
  18. khawar

    SQL question

    You download it from mysql web site (search in google) you have to download database, odbc connector for mysql and graphical user interface tools to manage and link mysql databases to access
  19. khawar

    SQL question

    Do you mean sql sever by microsoft Sql if yes then both are different database products
  20. khawar

    Criteria Problem

    then if form names are correct it should work
Back
Top Bottom