Search results

  1. F

    Limit data entry to one of four available combo boxes

    Ok, I still have two problems... First if one combo box has been completed, I would like to prevent data entry into the other 3 (this is purely aesthetic, the macro assigned to the control button opens a form based on the selected record in the matching combo box). Second I am trying to get a...
  2. F

    Limit data entry to one of four available combo boxes

    Morning All! I'm sure I've done this before but I can't remember how... I have a form with four combo boxes on it, the four boxes all open the same form and return a record based on the selection from a different column from the same query. To make it work smoothly I think I need to make it...
  3. F

    Fiscal Year Query

    With a little help from a friend... >="1/4/" & IIf((Month(Now()))>3,(Year(Now())-2),(Year(Now())-3))
  4. F

    Fiscal Year Query

    Thanks for replying, I have tried using a query, it isn't going well! I need to be able to select data from the current year and the preceding two years and use that to create a new table. I can to do this if I use the actual year, but I can't make it work using fiscal years...
  5. F

    Fiscal Year Query

    So, I was wondering if I am making this too difficult... I have a linked table and I am making a new table based on this which has fewer columns. I would also like to reduce the number of rows by only including data from the current financial (Fiscal in America?) year and the last two...
  6. F

    Rolling year...

    I love the idea of being able to do something elegant with access... maybe one day :) Thank you again for all your help today!
  7. F

    Rolling year...

    You're amazing thank you so much for sorting the start and finish dates of this report for me! I feel very cheeky asking after all the help you have given me already, but do you know how to group them into 15th-14th sections for each month period? I'm having no luck with that at all!!!
  8. F

    Rolling year...

    whoop whoop... another lap of honour round the office!! It now works using Date() Thank you very much. Now I just need to figure out how to make it go into 15th-14th segments :confused:
  9. F

    Rolling year...

    Ack... I am looking at date functions and playing with DateAdd without any luck. As I don't have a full 12 months worth of rolling data yet, I tried to start small and bring back the last months worth of data with this =DateAdd("m",-1,Now()) But even that isn't working for me :(
  10. F

    How do you add time?

    Thanks for getting back to me do quickly John... I've just doing a lap of honour around the office for having figured out how to convert time into a decimal so that I can add it up! Once it's a decimal I think iw ill be able to manupulate it ok. Thanks again :)
  11. F

    How do you add time?

    Is it possible to add time in a query? I have to add the number of hours overtime worked and I'm getting a data type mismatch error message. The time field is in hours, so I am wondering if I need to covert it to a decimal to add it up? Please could someone point me in the right direction...
  12. F

    Rolling year...

    Hi all, I wonder if anyone could give me a starting point to set up a rolling year query? My companies month runs from the 15th to the 14th. On the 16th of each month, they want to run a report showing how many hours of overtime have been worked in the last 12 months. So on the 16th...
  13. F

    Who told them I could make a database?

    thanks for the welcome back :) A multinational database making company... **faints** I thought one database every three years was pushing it!!!
  14. F

    Adding multiple identical records from a form

    thanks for the reply dkinley, can I use this to duplicate 10 records in one go?
  15. F

    Adding multiple identical records from a form

    ooh sorry Faspus, I guess I didn't explain properly... I want to create 10 identical records at the same time, with one click of a button. The records are created before the work takes place, therefore they can't be completed in full at the time the record is created.
  16. F

    Who told them I could make a database?

    Dammit, I'm back... I first registered in 2007 when I managed to get heaps of ideas from existing posts and some great one to one help with the database I was building. Someone at work spread the word I had made the database, and now I've been asked to make another one :rolleyes: So here I am...
  17. F

    Adding multiple identical records from a form

    Hey there, Please could somebody point me in the right direction? I would like to add multiple identical records to a table via one input form. All the details to be added to the table will be identical with the exception of the primary key, which is an autonumber field. It will usually be...
  18. F

    Do Bookmarks have a limited length

    I made it work by removing Format( at the beginning and ,"Details") at the end
  19. F

    Do Bookmarks have a limited length

    I wonder if someone would be able to advise me on this. I sending fields from access to word, and placing them in the word doocument using bookmarks. One of the fields is a long memo field, and only part of the field is arriving in the word document. Would someone be able to advise me if the...
  20. F

    Bookmarks in Word stopping at first blank record

    I used this, remembering to go into the tools menu, references and add the Microsoft Word Object Library Private Sub MergeButton_Click() Dim objWord As Word.Application 'Start Microsoft Word 97. Set objWord = CreateObject("Word.Application") With objWord 'Make...
Back
Top Bottom