Search results

  1. A

    Row Count?

    how do i cant the number of rows/ records in a table and display it as a number in the report?
  2. A

    Reports based on start and end date?

    is it possible to add a mask to the input? how do i display a error message if no records are found?
  3. A

    Reports based on start and end date?

    my report is based on a query i was just wondering how do i get it to prompt
  4. A

    Reports based on start and end date?

    How do i make a report prompt a start date and finish date based on a table field to which it should pull data/rows from?
  5. A

    clearing tic boxes?

    i forgot about the option group! cheers m8 it worked fine :)
  6. A

    clearing tic boxes?

    what do you mean bound? all ive got atm are tick boxes on a form. Depending on which tick box they check i want it to take a value from a textfield and copy it to another. Whats the code to clear a tickbox and set it to empty? Also how do i group together say 6 tick boxes so only 1 of them...
  7. A

    clearing tic boxes?

    How do i reset tick boxes on forms when you go to the next record? Also in VBA whats the code to checking if a tic box has been ticked or not? can i use the If tickbox is Null ? Or do i use tickbox = true (or false?)
  8. A

    Hide #Div/0! ???

    =IIf([priceBoxDifference1]=0,"0%",[priceBoxDifference1]/[NettValue]) Figured it out so it now displays 0% :)
  9. A

    Hide #Div/0! ???

    doesnt work still displaying same error :/
  10. A

    Hide #Div/0! ???

    Is there a way to hide #Div/0! error when no data has been entered for the calc to work out? i rather just have nothing appear and then a figure when numbers are entered.
  11. A

    Storing Form Fields?

    nvm i figured it out, you have to change the record source on the form for it to store :)
  12. A

    Storing Form Fields?

    it seems to work for combo boxes, i generate a list of items and store it in a field. MS Access asks me where i want to store the selected value, was wondering if there was something similar for form fields?
  13. A

    Storing Form Fields?

    i need the data to generate reports of, some calculations cannot be worked out on the form because they require user input/ choices
  14. A

    Storing Form Fields?

    How do i store form fields into a table? on my form i have text boxes which work out calculations but i dont know how to store them. Does anyone have any ideas?
  15. A

    Lookup from level 3 cascading combo boxes?

    Where does access store the values and please can u look at my Dlookup?
  16. A

    lookup field

    the dlookup command will work
  17. A

    Lookup from level 3 cascading combo boxes?

    Hmm another problem is how do i store the values in the drop down box?
  18. A

    Lookup from level 3 cascading combo boxes?

    =DLookUp("[PPP]","[tblTerm]","tblTerm!Term=[cboTerm]") All i want is the PPP of the term selected in the box above, only problem is there are many levels of combo boxes :/
  19. A

    Lookup from level 3 cascading combo boxes?

    my code i think is wrong =DLookUp([PPP],[tblTerm],[tboPPP]=[cboTerm]) so it looks up PPP from table Term and makes the text box PPP = PPP in table Term based on the combo box Term. ?
  20. A

    Lookup from level 3 cascading combo boxes?

    Is it possible to do a lookup on the last level of a combo box? at the moment i have 3 levels, the last level displays a range of dates (terms) and i want it to look up all the values for that one term (in other words all the data from that one row). Is it possible? the term used in the combo...
Back
Top Bottom