Recent content by Beerman3436

  1. B

    Greatest Values Question

    Still not right and there is no query3 in the database? I still can't see the -8 value?
  2. B

    Greatest Value

    Still problems I now don't see the -8 value on the report....can you still help pls?
  3. B

    Greatest Values Question

    Greatest Values Questions .Source = "Select TOP 5 [Name],[StuDiff] From QryCover WHERE (((QryCover.StuDiff)>=2)) OR (((QryCover.StuDiff)<=-2)) ORDER By ABS([StuDiff]) DESC" I can get the numbers but now it needs to be in name order and not studiff. If I put it in name order then I get the...
  4. B

    Greatest Values Question

    No that did not work I still don't see the values after the -8.
  5. B

    Greatest Value

    No I thought I just put it on here. Sorry
  6. B

    Greatest Value

    Here is a example of my database can someone please look at it and tell me how to get the top 5 values from the query. not the first 5 highest but the highest out of all the data.
  7. B

    Greatest Values Question

    Here is the list I have in the field: SupDiff 0 0 0 0 -1 0 0 -2 0 0 -1 2 -1 0 1 0 -1 0 0 0 0 0 0 -1 0 1 -2 0 0 0 -1 0 0 0 0 0 2 0 0 0 -8 0 1 0 0 1 0 0 0 0 0 0 -2 0 -1 1 -5 0 0 -1 0 0 1 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 -2 0 0 0 0 -1 I need to find the 5 biggest values not...
  8. B

    Greatest Values Question

    Greatest Value Question I still don't see the -5 value I need. Out of the top 5 it comes out at number 7 behind Showing up now: -2 2 -2 2 -8 next 3 that will show up: -2 -5 -2 As you can see that the -5 should show up in the list.
  9. B

    Greatest Values Question

    Greatest Values ok here is and example: I have 0 -1 -2 -8 -4 -5 -6 -7 -8 -8 -9 -9 -1 0 -2 -3 Out of that I need to get -7 -8 -8 -9 -9 and not just get the first 5 values.
  10. B

    Greatest Values Question

    Greatest Value Question That is not the problem, the problem is that I have about 94 records in the field and it is getting the first 5 it comes to that are >=2 or <=-2..... it finds now: -2 +2 -2 +2 -8 And then in a field about 20 down from the last I see a -5....I need to know how to get...
  11. B

    Greatest Values Question

    If I using this line of code to try to pull out the top 5 values from a query: .Source = "Select TOP 5 [Name],[SupDiff] From QryCover WHERE (((QryCover.SupDiff)>=2)) OR (((QryCover.SupDiff)<=-2)) ORDER By [Name]" It works fine but what I need to know is how to find the greatest vlues in the...
  12. B

    Sorting Question

    How can I sort this code ascending or descending order? .Source = "Select TOP 20 [Name],[Alloc],[Total] From QrySML WHERE QrySML.Alloc>=100 ORDER By [Alloc]" Where would I put the sort order?
  13. B

    ADODB Append

    I need to know how to insert a new column in a table with a ADODB command. I tryed the append but it will not work.
  14. B

    Convert to ADO PLS PLS PLS

    Convert to ADO Thank you very much.
  15. B

    Convert to ADO PLS PLS PLS

    Can someone help me convert this code to ADO form DAO please? Function GetPermissions() Dim TheDb As Database Dim TheTable As Recordset Dim TheForm As Form Dim TheGroup As String Dim TheUser As String TheUser = "Username = '" & CurrentUser() & "'" Set TheDb =...
Back
Top Bottom