Search results

  1. B

    missing numbers in list

    thank you so much @plog it works very well
  2. B

    missing numbers in list

    could i do this with two tables table1 for custID and invoice id table2 list of numbers between 1 and 500 so if table1 contains 200 invoice it will compare between the numbers from 1 to 200 or in another way i dont want to enter the customer ID in another table i want to make it work with...
  3. B

    missing numbers in list

    cant get a result do you have a sample for this query thank you
  4. B

    missing numbers in list

    thank you sir i will try it and get back with the result
  5. B

    missing numbers in list

    hello guys, i have two tables table1 = customers info table2 = custom invoices table each customer will have invoices starting number 1 customer1 invoice 1 - 2 - 3 - 4 customer2 invoice 1 - 2 - 3 - 4 so now i have too much invoices i want to add to the system when i enter all the...
  6. B

    query don't run from vba

    guys i don't why but i run the query after closing the form and now everything work i tested with many many records
  7. B

    query don't run from vba

    when i set warning to true it works but after second run not from the first run any other solution to sum the data instead of make table query ??
  8. B

    query don't run from vba

    SELECT tbl_Personal_Sanctions_02.PID, tbl_Personal_Sanctions_02.Sanction_Type, Sum(tbl_Personal_Sanctions_02.Sanction_Value) AS SumOfSanction_Value INTO tbl_Sum_Edbarat FROM tbl_Personal_Sanctions_02 GROUP BY tbl_Personal_Sanctions_02.PID, tbl_Personal_Sanctions_02.Sanction_Type HAVING...
  9. B

    query don't run from vba

    so how to resolve this problem. am sure there is a way because it's impossible to let the user close the form and run the query manually
  10. B

    query don't run from vba

    i have a make table query that i want to run it after adding new data DoCmd.Save DoCmd.SetWarnings False DoCmd.OpenQuery "qry_Sum_Edbarat" the new data will be saved the set warnings will be set to false but the make table query doesn't run, but if i double click on the query...
  11. B

    Calculated Field Error

    i changed to IIf([Sin01_Code] Is Not Null And [Sin02_Code] Is Not Null And [Sin03_Code] Is Not Null;[Sin01_Code] & " - " & [Sin02_Code] & " - " & [Sin03_Code];IIf([Sin01_Code] Is Not Null And [Sin02_Code] Is Not Null And [Sin03_Code] Is Null;[Sin01_Code] & " - " &...
  12. B

    Calculated Field Error

    i can't seperate with comma just with semicolon after adding empty string between the first two semicolon i get this error The expression you entered has a function containing the wrong number of arguments
  13. B

    Calculated Field Error

    hello guys, what's the problem with this expression IIf(IsEmpty([Sin01_Code]);;IIf(IsEmpty([Sin02_Code]);[Sin01_Code]);IIf(IsEmpty([Sin03_Code];[Sin01_Code] & " - " & [Sin02_Code];[Sin01_Code] & " - " & [Sin02_Code] & " - " & [Sin03_Code]))) am getting this error The expression you entered...
  14. B

    update last record

    hello guys, i want to run an update query to update the last record in a table from multiple table N.B: each table from where i want to bring data contains just one field and one record this my code UPDATE tbl_Sanctions SET tbl_Sanctions.Code01_01Year = [tbl_01Years_Code01].[txt_Text]...
  15. B

    update table from query

    hello guys, i have a query that counts how many times the same record exist and i have table that i want to update the field on counter with the data from this query this is the query SELECT Count(tbl_Personal_Sanctions_02.Sanction_Date) AS txt_Numbers_Original FROM...
  16. B

    Count Values in Fields

    Thank you all And specially @CJ you rock man I appreciate all your help
  17. B

    Count Values in Fields

    Any help guys?? Thanks
  18. B

    Count Values in Fields

    Thank you it works very well but still need one thing plz this solution count the codes seperatly for example i want to sum the code 901 and code 105 or any two or three codes, should i make a new query or could we update this one ?
  19. B

    Count Values in Fields

    This is a sample data I have have multi-value field No need for special function because i just want ro fo back 365 or 730. I just want to go back by days
  20. B

    Count Values in Fields

    hello i have a table contains two fields first field = Date second Field = codes 01/01/2017 | 105, 201 05/03/2017 | 105, 901 01/01/2018 | 105, 201 07/08/2018 | 901,902 One Code i want to count the code 901 from today and one year back so i will get (1) 105 from today and five years back i...
Back
Top Bottom