Recent content by 1starr

  1. 1

    Top Ten

    Thanks guys, but I found out that if I create a query for each location using the "Select Top Ten" statement then create a union query I get my results. Again thanks for all your help.:D
  2. 1

    Top Ten

    I need to create a quert that gives me the top 10 most sold item in each store. In other words I have approximately 8 stores that and I want only to find out what items are most popular in each location and with this query I will create a report showing by location what was the 10 most sold item...
  3. 1

    Error 3464

    Here is the query: SELECT [CERT June].Category, [CERT June].Weight, [CERT June].Status, [CERT June].Domain, [CERT June].DateofSRR FROM [CERT June] RIGHT JOIN Status ON [CERT June].Status = Status.Status GROUP BY [CERT June].Category, [CERT June].Weight, [CERT June].Status, [CERT June].Domain...
  4. 1

    last 5 entries

    I can elimate the spaces for everything except Cert June which is the table name. If I change the name I would have to go in and change all the queries, forms and other reports in the database
  5. 1

    last 5 entries

    This is exactly what I need but I keep getting a "syntax error in query expression" . This is how I wrote it: (Select Count(*) from [CERT June] where OS =[Catagory IIs].os and [Sum of Catergory] >=[Catagory IIs].[sum of categroy]) :confused:
  6. 1

    Error 3464

    Data type mismatch I have narrow the problem down. I wrote code where a list box pops up and the user gets to select one of many dates which appears as 10-Oct-03 for example. The problem is that once the user selects the date it is pass through the code as 10-10-03 and by the time it is pass...
  7. 1

    Security Problem

    Sorry about that, but what I meant was that there is no font or back end.
  8. 1

    Security Problem

    Database is located on the network where everyone can access it. This database was orginally created by someone else. I'm just now taking it over The database was never split nor did the creator but a front end on the desk tops. So all the security setting are located where the database...
  9. 1

    Security Problem

    The problem is that this is only happening to the users who could not gain access because they kept getting the error message that stated the "Admin; file already in use" , now since I corrected that problem they are getting this second error message. No one else is having a problem. I would...
  10. 1

    Security Problem

    Security Problems I did as you instructed now I am getting this error ( See attachment)
  11. 1

    Security Problem

    :( My users are now unable to access the database. This problem did not begin until a week ago. When ever some of users attemted to open up the database they receive this error: (see attachment) instead of getting the logon box. This occurs even when they are the only one trying to logon. I...
  12. 1

    Error 3464

    Thanks :p
  13. 1

    Error 3464

    This is the error message I keep getting when I run my query: 3464: Data type mismatch in criteria expression. If anyone knows what this means please let me know. Thank You.:confused:
  14. 1

    Setting query Criteria From a Function

    Thanks, for your help but all of sudden it started working. I don't know what the bug was cause yesterday I first step thru it and it seem that the flow of data for strDom wasn't flowing correctly and them when I came back to it today, it worked with out a problem. There must had been some...
  15. 1

    Setting query Criteria From a Function

    The value of strDom is assigned when the user open the form to enter data for certain Dormain. The user needs to print out a new report after they had entered their data which includes all the previous data entered and to keep them from having to enter the strDorm data again all they would have...
Back
Top Bottom