Search results

  1. T

    Listbox selection to open record

    Hi guys thought i'd give some feedback on your excellent work, all suggestions worked fine, but I have now revamped the database and have the main form a continuous form, the listbox double click works fine, but doesn't go the record on the form and the main form remains open, also the combo...
  2. T

    Counting multiple fields in a table that contain dates.

    Hi, solved the puzzle I discovered crosstab query for the first time and that solved it.
  3. T

    Counting multiple fields in a table that contain dates.

    Me again! Right I did what you suggested and made some other calculations etc further down the road much easier but it has also thrown up another problem. Before I changed the test table to your suggestion I had one vehicle with many dates similiar to an excell matrix so I was able to create a...
  4. T

    Counting multiple fields in a table that contain dates.

    Excellent Plog, never even thought of it like that, doh!, thanks again I will put it into practise immediately. The original table has 2000 entries any idea how to repopulate the new table as you suggested with the old data?
  5. T

    Counting multiple fields in a table that contain dates.

    Please find attached a table in which I would like to count each field if the dates falls in the past and have the count as a total or individual in a popup to show what is out of date, and if the user requires to see any of the results how to create a form to show those results. Or should I...
  6. T

    highlighting current record from selection from combo box and selecting item

    Hi all, hope you can help. I have a continuous form show multiple records, fine, I have a text box behind all fields on the form and another hidden unbound text box in the form header, I have this in my oncurrent event of the form, Private Sub Form_Current() If Nz(Me.Unitid) <> "" Then...
  7. T

    filtered cascading combo boxes

    Thank you for your help, I don't seem to have explained myself very well, my fault. I have a continuous form that shows all records in a vehicle maintenance db. I have 3 combo boxes that filter 3 fields, location, category and status. They have there source from 3 tables with just a list of...
  8. T

    Multiple option groups and print results

    Hi all, and thanks for looking any help appreciated. I have an unbound form with 2 option groups, one contains a category like MOT, TAX etc the other group contains the 12 months, so I can choose from the first group a category then choose a month, then I would like those choices to run a query...
  9. T

    filtered cascading combo boxes

    Thanks for your reply, this is fine if I were using a single form scenario, but I am using a continuous form. I have 3 combo boxes based on 3 tables which are just lists that feed a main table, I have a qry behind the continuous form, each combo box filters 3 different columns succesfully but I...
  10. T

    filtered cascading combo boxes

    Hi, I know there has been many threads written around cascading combo boxes, but I can't seem to figure out if any of them fit my problem. I have a continuous form. in the header I have 3 combo boxes based on 3 tables of single firlds, each one filters the form i.e location, category and status...
  11. T

    Filter text box same as criteria used in conditional formatting

    Hi everyone, hope this makes sense if not someone point me in the right direction please. I have a form for vehicle maintenance. I have 3 conditional formats to show red for out of inspection, yellow for those coming up for inspection and green for ok, that works fine. the form is in continuous...
  12. T

    Re-populating an open form with another query based on a combobox selection

    Thanks for your reply, but after a few tweaks I have managed to combine the 2 queries so I have all the data I need for the form, however on a similar note, on my form I have 2 text boxes that are controlled by the 2 queries, both invisible, so I have a combo box that when a category is selected...
  13. T

    Re-populating an open form with another query based on a combobox selection

    Ok I think I get the drift but not being fully converse with coding as yet, but i'm getting there, could you be a little bit more specific please.
  14. T

    Re-populating an open form with another query based on a combobox selection

    Not sure which is the best wat to go here, I have one form amd two queries, the only difference between the two queries is a 6 weekly date and a 12 weekly date for inspecting vehicles. I have created a form based on the 6weekly query and all is fine, I use a combo box to filter all hgv's or all...
  15. T

    Autopopution of a field from another table based on another field criteria

    Hi and thanks for all your help but found a cracking article in MSDN Microsoft library did the trick exactly what I wanted. It takes the not in list item typed opens up a new form to enter the item, creates a new entry into the main table and then returns to the opening form so any other details...
  16. T

    Autopopution of a field from another table based on another field criteria

    Hi Pat thanks for your insight and youre right I have had a rethink and created as combo box for the unit from the main table then inserts the unitid into the invoice table based on the choice this works great. However, if an item doesn't exist in the main table how do I redirect the user to...
  17. T

    Autopopution of a field from another table based on another field criteria

    I have a main table which is autonumbered on unitid, I have another table which is linked via the unitid which holds items purchased for the main table, so the second table is a subform of the suppliers and will have multiple entries of the same unitid. What I would like to do is when an item is...
  18. T

    Linking items purchased against vehicle and workshops

    Hi guys and gals! I have a dilema that I have been looking at for days now and still can't see the wood for the trees. I have a databse that monitors vehicle maintenance, servicing schedules and stuff like that. My problem is we purchase items for the vehicles and I am trying to link the items...
  19. T

    Auto populating fields within tables

    Can't do that becuase the jobdate is sometimes different from the service date, the jobs whether they be inspections or services or just brake pad change are taken from the work sheets so they are never today (now()) if you know what I mean.
  20. T

    Auto populating fields within tables

    Yes I know you shouldnt have duplicate valuse, let me explain. It is a vehicle database, one table holds the vehicle info, another keeps the work completed on that vehicle and another keeps the test dates of servicing etc. Everything works brilliantly sao worries there, I am just being lazy I...
Back
Top Bottom