Search results

  1. T

    Queries and Reports

    Ok, I am not great at access but I did this once in a class I took. I am not sure if it will work for you because I was not using yes/no and if u look at my problem I had posted just a little while ago, I am having a problem doing something just like this. Anyways, try this, create another field...
  2. T

    IIF statement not working

    your right about the brackets...I realized that a little later after lookingat some examples...but it still ask for an imput. I have exactly what you have and it still asks for fixedexpenseoccurance
  3. T

    IIF statement not working

    Please read the above one if you haven't it explains in detail the problem...anyways, I am going one by one to c if the IIf statement works. I figured out that I had parenthesis before the iif, can't do that. So now here it is: IIf(fixedExpenseOccurance=Quaterly,amount/3,0) Now that runs...
  4. T

    IIF statement not working

    Here is the problem again in a more detailed explanation and the problem that is occuring: MonthlyExpenseAmount: (IIf(FixedExpenseOccurance)="Quarterly",(amount)/3,0)(IIf(FixedExpenseOccurance)="SemiAnnually",(amount)/6,0)(IIf(FixedExpenseOccurance)="Yearly",(amount)/12,0) I was wondering if...
  5. T

    IIF statement not working

    Hi - Well, the "represents a yearly total" is whatever is selected from a dropdown box and can be either monthly, quarterly, semiannually, or yearly. I am making reports for each. Any expense that is yearly is divided by 12 to make the monthly expense...do you see what I am doing? Every value...
  6. 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...
  7. T

    Data entry method

    Well the records are sorted by date. Each day new records get inserted, so they are sequential...Will this (Previous post) work the correct way? I want it to show yesterday's additions every day I go into the forms. Thanks for ya'lls help
  8. 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?
  9. T

    Date Relationships Problem (hahaha)

    My Date Table (I think my Parent table b/c it is the 1 in the one-many relationship) contains an AutoID which is the Primary Key. It is seperate from the 3 forms which I am assuming I have as the child forms. (being the many side of the relationship) I used the wizard, added the two fields from...
  10. 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...
  11. T

    Listbox runtime additions

    Private Sub MetricName_NotInList(NewData As String, Response As Integer) On Error GoTo MetricName_NotInList_Err Dim intAnswer As Integer Dim strSQL As String intAnswer = MsgBox("The metric " & Chr(34) & NewData & Chr(34) & " is not currently listed." & vbCrLf & "Would you like to add it...
  12. T

    Listbox runtime additions

    Private Sub MetricName_NotInList(NewData As String, Response As Integer) 'suppress the default error message. Response = acDataErrContinue 'Prompt user to verify if they wsh to add a new value If MsgBox("The Metric " & NewData & " is not in the list. Add it?", vbYesNo) = vbYes Then 'Set Response...
  13. T

    Listbox runtime additions

    I have it look up a value in a table but there are no entries in the table. The limit to list is "no". After Update I have Me.MetricName.Requery
  14. T

    Listbox runtime additions

    Do I need it to lookup a table first or something or can I have it unbound in my form (the form would be the first instance of the list entries)?
  15. T

    Listbox runtime additions

    Please Help!
  16. T

    Listbox runtime additions

    Private Sub MetricName_AfterUpdate () [Forms]![EmployeeMetricRecordsForm]![MetricName].Requery End Sub I have entered this into the form's code but it does not update it? the next record still has an empty list
  17. 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
  18. T

    Lookup field

    Well I am making revisions to a database I made for the company I work for. There are some changes my boss wants made and that is one of them. He does not want to have to put in a new name for it to appear in the listobx.
  19. 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...
  20. 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.
Back
Top Bottom