Search results

  1. T

    Parameter Query in form

    Does anybody know how to have a text box on a form "satisfy" a parameter in a query? I want to enter two dates and have a subreport show information from them? (The records shown will only be between those two dates) How do I do this? (I don't want the parameter to pop up on form open)...
  2. T

    Tables into Forms

    I have 3 tables Metrics, FixedExpenses, Variable Expenses, I want them all to have a date in a form, and a subform for all the records to be added. I want to be able to do this without having 3 seperate date tables linked to the other three tables. I am not sure how to do this correctly. (I want...
  3. T

    After append update query

    I need an append query to also update a yes/no box or a text box with "yes" "no" in the field. I don't know how to do this in SQL. Please help. Query 1 is the name of the query I want updated from "yes" to "no" Something like: AFTER APPEND (I am not sure how to do the "after append" in sql)...
  4. T

    cascading combobox help

    I have cascading combobox that fills in 7 txt boxes. I have a query that does that. I have two calendars and I want to have the selected dates be 2 fields on that same query that way I can use that query again to show a report based on the combobox selection and the 2 dates. (the records on and...
  5. T

    Weird Question

    Ok, a friend of my was on my laptop and he crashed the hardrive. I was able to get the database I have been working on off the computer but when I use my computer at work to try to open it, it opens but says "Function is not available in expressions in tabel-level validation expresions" on all...
  6. T

    Another if statement problem

    I just need to know how to compare 2 dates in an if statement: IIF (LastActivation) >= (Date()), (DueToday)= "Yes", (DueToday) = "No"
  7. T

    Another if statement problem

    I just need to know how to compare 2 dates in an if statement: IIF (LastActivation) >= (Date()), (DueToday)= "Yes", (DueToday) = "No"
  8. T

    subform/query???

    I am making a form that will be used to enter info, then spit out an employee's pay for the time period. On the form are some goals or qualifications (I am assuming I will have to make queries for those but thats another story) that, if reached, bonus' will be added to final pay. The form will...
  9. T

    form cbboxes

    can anybody explain to me how to creat a form that has comboboxes that has updating lists after the first one is selected?
  10. T

    Creating Jobs using scheduler in Access

    Does anybody know how to schedule in access like sql. Like a "job" in sql server?
  11. T

    Step-by-Step Payment Form

    This I think is going to be difficult. I have a tutorial that I am trying to figure out on how to do this but it is basic. It can be seen here http://www.fontstuff.com/access/acctut08.htm Anyways, I have a form that I want to use for employee pay. 1. I want to select (from dropdown) the...
  12. T

    Expense report--expense reocurrences

    I have an expense report I am trying to create. Expenses are 1 of 4 things (monthly, quarterly, semiannually, or annually occuring). If I enter a record say today: 8-04-2006--Window cleaning--$400.00--yearly Is there a way to get it to automatically re-occur on the same day next year. (I want...
  13. T

    IIF statement not working

    Expr1: (IIf([FixedExpenseOccurance]="Quarterly",[amount]/3,0))+(IIf([FixedExpenseOccurance]="SemiAnnually",[amount]/6,0))+(IIf([FixedExpenseOccurance]="Yearly",[amount]/12,0)) FixedExpenseOccurance is the the field and "*" is the values which get looked up from a table. I am trying to create an...
  14. T

    Data entry method

    I want to have my records in my form show the latest entry, not a completely new form. The user will click on the new record button to create a new record but I want the user to be able to see the last record. Anybody know how to do this?
  15. T

    Date Relationships Problem (hahaha)

    Just thought the title was pretty funny, I know, u all are thinking this was an access forum not a dating site... I have a relationship question that I was hoping would be quick and easy if you don't mind. I have 3 different forms (Metric Records, Variable Expenses, Fixed Expenses) that I want...
  16. T

    Listbox runtime additions

    I want to have a dropdown box in a form but allow additions to be made, but after they are made, instead of them not showing up in the box like usual, I want them to become a part of the list. Plz help! Thanks
  17. T

    Monthly Expense Query

    I have attatched a word document showing values and what I need. I want to create queries (monthly, quarterly, semi-anually, yearly). I am working with the monthly right now and if I can figure that out I am assuming I will be able to figure the others out the same way. For the monthly report I...
  18. T

    Lookup field

    Alright, I have a field called metrics that looks up the text in another table caled Metric Name. I want to delete the table that is being used to supply the values, but I still want a listbox with all those names. Also I want to be able to add names to that listbox. I am not sure how to do this.
  19. T

    Listbox in parameter

    I am trying to create a report from an expense table. I want a parameter to show up on the report and say "which expense would you like to see" and then in the parameter box have a list that you can select the expense from. Please help!
Back
Top Bottom