Search results

  1. D

    File Extended Properties

    excuse my ignorance but what do you mean by extended properties? Dave
  2. D

    Query advice required

    hi Daz, to follow my suggestion you need to have what I suggested in 1 query for the 10 fields you have, so it will be something like this: TotalCount:count (*) TempField1:dcount ("[FieldName1]","tblName", "[FieldName1] = "Criteria") PercTempField1: ([TempField1]*[TotalCount]/100)...
  3. D

    Need help with Query

    One thing I have noticed: ********************************************** stDocName = "Word Answer Query" txtRightAnswer = DLookup([Word_Answer], "MyAnswer") ********************************************* shouldn't txtRightAnser be: DLookup([Word Answer Query], "MyAnswer")? also, pls post the...
  4. D

    stopping autonumber starting from zero

    Have a look at this: http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3BQ209696 Dave
  5. D

    Help please

    I would suggest that you search the web for access tutorials. There are many that explain in fairly good detail the development of databases. good luck Dave
  6. D

    Help please

    Yes, you can do all that with Access using a table and a form. The table would contain the raw data, the form contains raw data + formulated data eg: RetailPrice = CostPrice + Tax Raw data is entered in the form, the calculation are done by code after the last field of raw data has been filled...
  7. D

    Query in form gives only top value. Need value for each record

    You have your sintax a bit wrong, it should be something like: =DLookup("[FieldName]","TableName","[FieldName] = "Criteria") if the criteria is a value in a form it should be: Forms!frmFormName!FieldName = etc Dave
  8. D

    Help with form populating previous entry

    use the Max function, eg. Max([FieldName] + 1) Dave
  9. D

    Query advice required

    a) count total records eg. a:count(*) b) count required records eg. b:dcount ("[FieldName]","tblName", "[FieldName] = "Criteria") c: calculate percentage of b over a. repeat for each field Dave
  10. D

    Populate with a List Box

    Put the code in the AfterUpdate event of the list box. Dave
  11. D

    Using text files instaed of Memo Fields

    There is also the issue of size, Access will store up to 2 G of data so, eventually, you will run out of space. Dave
  12. D

    Need help with Query

    pls post your code in full Dave
  13. D

    Any ideas why this doesnt work?

    did you dim xlApp? did you create the excel object (Set xlApp = CreateObject("Excel.Application")? Dave
  14. D

    Import data from Excel. Can this be done?

    you can even do it without code: File===>Get External Data===>Import then select the exel spreadsheets you want to import Dave
  15. D

    Query Criteria Dropdown

    No, but you could use a pop up form with a combo box full of criteria values to apply to the query. The criteria in the query would be something like: forms!frmPopUp!cboCriteria Dave
  16. D

    Need help with Query

    something like this in the Exit event of the answer field: dim txtRightAnswer txtRightAnswer = dlookup etc if Me!FieldName = txtRightAnswer then Me!ScoreField = 1 else Me!ScoreField = 0 end if Dave
  17. D

    i filter subform but Sum at footer doesn't change

    wish you said so at the beginning, I never worked with adb projects Dave
  18. D

    Tab control formatting

    Unfortunately you cannot. What you can do is get rid of the Access supplied tab format all together and create your own. Off hand I cannot remember how to do it so, if you wish, I will let you know on monday (friday, nearly knock off time in here....) Dave
  19. D

    Print Report from Subform Error

    I would change the field named Date to something else. Date is a reserved term in Access (there is a function in Access Date()) so that could be a part of your problem. Dave
Back
Top Bottom