Search results

  1. bastanu

    Calculator

    I never needed one, just did a Google search and posted some of the results...
  2. bastanu

    Calculator

    http://cpap.com.br/orlando/AccessCalculatorMore.asp https://answers.microsoft.com/en-us/msoffice/forum/all/calculator-in-microsoft-access-form/9be22ea6-eea1-4040-993f-09dfd9dc7067 http://www.mvps.org/access/downloads/calc.zip
  3. bastanu

    Auto Populate records in table

    Actually even easier would be to add a composite unique index on EmployeeID and BoughtYear fields in the tbluBoughtPTO table so the unmatched query would not be needed.
  4. bastanu

    Auto Populate records in table

    I agree that the first step should be a SELECT from tblEmployee but at one point (either here on in the subsequent INSERT) you would need to bring in the tbluBoughtPTO with left outer joins pointing towards it and Is Null in the EmployeeID from it (and also criteria for the year) to eliminate...
  5. bastanu

    Auto Populate records in table

    In the first column of your query change the table name to tblEmployee (and you don't need the tbluBoughtPTO table in there). I suggest you do it in two steps; leave the current query as a Select one then create a new one in which you join this new query to the tbluBoughtPTO using outer joins...
  6. bastanu

    Solved Finding specific Record index

    Because you want an index or rank, not a total count; have you tried to use my link?
  7. bastanu

    Remove data from a field

    It would if you restrict it by record\order id as mentioned in the code comments, unless multiple users are working on the same order....
  8. bastanu

    Have a list of foods in a table and a list of family members in another, not sure how to make a check list.

    You could also consider having two multi-select listboxs side by side in the classical Available<->Selected setup and implement code in double-click event to move from one side to the other in conjunction with the four usual buttons (<-,->,->>,<<-). Cheers,
  9. bastanu

    Remove data from a field

    Add a line to the click event of the button to update the Purchase field to False: CurrentDb.Execute "UPDATE tblYourTable Set Purchase=False Where Purchase=True" 'might need to add extra criteria such as a reference to current record ID' And then refresh the subform. Cheers,
  10. bastanu

    Solved Finding specific Record index

    I think you need to use a ranking query grouped by student and sorted by the RecID to get what you need: http://allenbrowne.com/ranking.html Cheers,
  11. bastanu

    Message

    That is exactly how my utility works... Cheers,
  12. bastanu

    Not able to select Drop-Down option on a Form

    Have you looked in the double-click event of whatever you double-click on the form (in the VBA editor)? Cheers,
  13. bastanu

    Message

    Have a look at my free custom chat utility: http://forestbyte.com/ms-access-utilities/fba-ms-access-custom-chat/ Cheers,
  14. bastanu

    Simple but not simple project...

    BoatCapn, I agree with others regarding the optimal design of a relational database; in your case to simply look over your EDP across 12 related fields in the same record using your old Excel table the answer is in post#7 and now we are at #26. Cheers,
  15. bastanu

    Simple but not simple project...

    So look again at my initial post (#7). Replace the textbox Input with a combo box as it easier to use because of the autocomplete feature and not prone to misspells like a textbox. Also you want the Input to be in the form header, not the detail. Once you set up the union query and use it for...
  16. bastanu

    Simple but not simple project...

    And I am not saying it should be used as the form recordsource but the search combo's row source.....
  17. bastanu

    Simple but not simple project...

    Steve, what exactly is the problem with your form? Are you trying to search\load a specific record by inputting an EDP # and look for it in one of the 10-12 competitor EDP? With your current model you can make the input a combo box with a union query as its row source: SELECT [Our EDP], [Comp 1...
  18. bastanu

    Office LTSC 16.0.14332.20416 "The command or action 'SaveRecord' isn't available now. 2046"

    If trying to save the current record in a form you should try to replace the existing Docmd.RunCommand with Me.Dirty=False Cheers,
  19. bastanu

    Solved Hyperlink opens wrong file

    That is my point, it is the report itself that is the problem. I shouldn't say the report only, it is probably what feeds the report. Without seeing the report we have no way of helping you, so if you can't provide a small db sample with the report at least show us the report's record source...
  20. bastanu

    Solved Hyperlink opens wrong file

    Then you need to inspect the report and specifically its record source, it seems like the parameter used in that is not being refreshed. Can you post a pic or the SQL of the recordsource? Cheers,
Back
Top Bottom