Search results

  1. khawar

    E-mail addresses storage and click to use.

    You can use smart tags property of field
  2. khawar

    Can I reuse a subform from another form?

    Yes you can
  3. khawar

    How to query a record that doesn't exist?

    Use the unmatched query wizard
  4. khawar

    Message Box Reminder

    Here is a good example of this
  5. khawar

    Crosstab Query

    if you see the result he required he want two row for type w for each date where shift is same but there are more than one codes In simple crosstab it cannot be achieved directly
  6. khawar

    Games and Trick In Access

    Games and Tricks In Access Attached file contains some games and tricks developed in access.
  7. khawar

    Question refering a field in a form as query criteria problem

    This can also be achieved by using just one form with a list box check the attached sample
  8. khawar

    Question refering a field in a form as query criteria problem

    I have made 2 changes In your query i used Like "*" & [Forms]![Form1]![mycriteria].[text] & "*" instead of Like "*" & [Forms]![Form1]![mycriteria] & "*" and second removed me.refresh from code when you use onchange event you have to use text property of control
  9. khawar

    Question refering a field in a form as query criteria problem

    It is same file you uploaded open it with access directly
  10. khawar

    Question refering a field in a form as query criteria problem

    Download the ammended file
  11. khawar

    Crosstab Query

    Actually you cannot use groupby for value field in crosstab so the solution is a little tricky Download the attached file and check the query FinalCrosstab It is based on another query query1
  12. khawar

    Update a set of select queries to refence a different table

    you should not be maintaining seperate tables for each year you can use one table for all years and then data can be filtered for each year whenever required
  13. khawar

    Question [Urgent] Filtering and saving multiple records in multiple columns.

    Use the solution given to you by Neileg Paste the sql in the sql view of query
  14. khawar

    Accumulated Begning Balance In Report

    Write this code in the onformat event of section (in which your control resides) if isnull([abc]) or [abc]=0 then [xyz].visible = false else [xyz].visible = true end if
  15. khawar

    Question [Urgent] Filtering and saving multiple records in multiple columns.

    two queries are suggested to you query1 will be the name of first query whatever name you give it replace query1 with that name
  16. khawar

    Problem with APPEND missing table

    There is no attachment
  17. khawar

    Question [Urgent] Filtering and saving multiple records in multiple columns.

    Sorry i didnt read it properly Neileg's solution is perfect
  18. khawar

    Help With SQL Statment

    Try this Me.Combo2.RowSource = "SELECT [hips_product].Product, [hips_product].Quantity, [hips_product].Sales_12_month, [hips_product].Sales_3_month FROM [hips_product] " & _ "WHERE [HOSPITAL NO & NAME] = '" & Me.Combo0 & "' ORDER BY [hips_product].products" Me.Combo2.Requery
  19. khawar

    Question [Urgent] Filtering and saving multiple records in multiple columns.

    Use This sql Select C1,C2 from Yourtablename where c1=2
Back
Top Bottom