Search results

  1. M

    Solved Compare Two date values in two fields in one table

    Hello I have a basic question, I have a table and want to compare dates .if date 1> date 2 , then pop a message . any Idea how can i do it ? with query or with VBA ?? Thank you
  2. M

    Solved Query Group by

    hello, I have a quay to group by 3 field and do sum in other fields . I want to have two other fields but not to be group by I want to be a part of table but i face the below error. how can do that ? any idea ? I appreciate for your help
  3. M

    Concatrelatd () function

    I really I really appreciate that .my problem with this code solved .Thank you
  4. M

    Concatrelatd () function

    Thank you It does not work for me :( what is simplecsv ?
  5. M

    Concatrelatd () function

    Expr1: ConcatRelated("CrewName","QryCrewStudy","QryCrewStudy.Rank = """ & [Rank]![Rank] & """ AND QryCrewStudy.On_Date = #" & Format([Dated],"mm/dd/yyyy") & "#","CrewNameRev") Could you express this code ? which one is the field were grouped by , what is table or query name and which field was...
  6. M

    Concatrelatd () function

    I added two tables to see what i expect to be the result . Thank you
  7. M

    Concatrelatd () function

    Why it doesn't work for me ? I want to do group by Aircraft Type,Aircraft Manufacturer Serial Number,and Event Type fields then concatenate Aircraft Event Text (Corrective Action) field. Can you help how to do that ? Thank you
  8. M

    Concatrelatd () function

    ConcatRelated() function doesn't work in query.it is unknown
  9. M

    Concatrelatd () function

    Hello I need help in concatenating a string field in rows : I want to do group by AC Model and Ac Serial,then concatenate all AC event text strings for it together. Can you provide me a solution ? Thank you
  10. M

    Solved SUM in a query

    Thank you my problem solved by this . IIf(Month([MONTH])=1 Or Month([MONTH])=3 Or Month([MONTH])=5 Or Month([MONTH])=7 Or Month([MONTH])=8 Or Month([MONTH])=10 Or Month([MONTH])=12 And ([PLANNED] Is Not Null Or [Scheduled] Is Not Null Or [Unscheduled] Is Not...
  11. M

    Solved SUM in a query

    Hello I need a help in sum of some fields I I want to sum (p and s and un fileds) id the month is 8 and add in O field? when i write id the query ,i have a lot of errors Operation_SUM : IIf ( Month([MONTH)]) ="8",([PLANNED]+[Scheduled]+[Unscheduled]),0) Could someone help to do this query...
  12. M

    IIF condition for the date are not shown in the query

    Thanks but it is not a table,it is a query that collects data from other queries.
  13. M

    IIF condition for the date are not shown in the query

    Hello I have a query that shows the correct details. it should show 12-month data before the exact END DATE from exiting data . for a specific case,I have just 2 2 month records to show. How can I add a condition if the other months are not on the list put their value 1 or 100%. this query ...
  14. M

    Open a macro in a databese2 in database1

    I changed it and the result:
  15. M

    Open a macro in a databese2 in database1

    from database 1 It should open database2 and run macro "main" on it. it doesn't open database2.
  16. M

    Open a macro in a databese2 in database1

    Hello I have two databases,1and 2,I want to run a macro from database 2 in database 1 : I have the below code, but not work and no error .can you hint where is the issue? Public Function run_main() Call CallMacro() End Function Public Sub CallMacro() ' Dim strDbName, strMacro Dim...
  17. M

    Solved Import from excel to access and export from Access to Excel

    I found the issue in this line DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12, "DATA", varFile, True, "Report Details!" I changed the excel type to DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12Xml, "DATA1", varFile, True, "Report Details!" and the import...
  18. M

    Solved Import 3Excel files in a table and make a copy of them

    I found the issue in this line DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12, "DATA", varFile, True, "Report Details!" I changed the excel type to DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12Xml, "DATA1", varFile, True, "Report Details!" and the import...
  19. M

    Solved Import 3Excel files in a table and make a copy of them

    yes i changed it to long text
  20. M

    Solved Import 3Excel files in a table and make a copy of them

    DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12, "DATA", varFile, True, "Report Details!" DATA is my table name
Back
Top Bottom