Search results

  1. raydan

    Filter out year?

    In my DB im trying to determine the aniversary date of a loan closing. I can't seem to get the query to ignore the year and just show me the loans that closed in upcoming month regardless of what year. This is what I have so far, what else do I need. thanks, Raydan SELECT Loans.LoanID...
  2. raydan

    Dont think Access can help, well not sure

    Hi all, I created a database for my company and it works very well but, I need it or something to track the way I pay comisions. Its a type of multi-level company and pay rates vary. Also, once someone hits the top level they now join in profit sharing. The profit sharing part is the tough...
  3. raydan

    need to see structured organization with query

    Hi, all. Im trying to show multi level organization with a query and im not sure how to do it. I have a table that is named Originators, that includes all of the persons personal info and this table gererates a OriginatorID. Next I have a table called OrgTree that has the fields as follows...
  4. raydan

    Emailing queries/report by using a form

    Well im close to putting my DB into action, but I'd like to have a form that will show a list of queries and reports where they can be selected and emailed. I would like to be able to choose one or many files. I have created the email module and its working fine, I just thought I could make it...
  5. raydan

    Need better tracking with my tables

    I have a DB thats working fine, but (there always is a but) I now need to do something a little bit different. I need to be able to track my originators and who they have brought into the company. So I will have an originator and many down-line originators, and these people that come in...
  6. raydan

    Summing totals in a query

    SELECT Commissions.TransactionID, Commissions.OriginatorID, Commissions.AmountPaid, Commissions.DatePaid FROM Commissions WHERE ((Commissions.DatePaid)> DateAdd("d", -32, Date())); I want to add up commissions paid in a month using a simple query and im not sure how to proceed from here. This...
  7. raydan

    I need query to lookup records for this year only.

    SELECT Loans.CustomerID, Loans.LoanID, Loans.LoanAmount, Loans.StartDate, Loans.EndDate, Loans.LoanLender FROM Loans WHERE (((Loans.StartDate)>DateAdd("d",-32,Date() And ((Loans.EndDate)>DateAdd("y",-1,Date()))))); I want my query to do a monthy lookup of bussiness where a loan is either opened...
  8. raydan

    Form navigaion button help

    I have a form where I set the record Nav and Record set to NO and placed buttons on the form to navigate through the records in the form from the tables. I would like for the next record and previous record buttons to have the pop-up say "you have reached the final record", not you can not go...
  9. raydan

    I need a Table to increment.

    I have a database that has a few tables and in one of them (Originators), there is all the info about my loan originators including there comission level. I would like it when they turn in a certain amount of loans there commision level will increase. Is this posible? Here is my DB setup...
  10. raydan

    Need to increment a Value in a table.

    I have a database that has a few tables and in one of them (Originators), there is all the info about my loan originators including there comission level. I would like it when they turn in a certain amount of loans there commision level will increase. Is this posible? Here is my DB setup...
  11. raydan

    Almost there, one form left!

    I've created a db for my mortage company and I have everything complete except returning customers. I want the customers to have the same customerID but different TransacionID. Sounds simple to me but im having problems. It could be a table issue but im hoping its just a form thing. I have...
  12. raydan

    Need Querry to show records that are 3 months old

    I have a querry designed to show loans that have a start date and an end date. I want my querry to show loans that have a start date, no end date, and that are 3 months old. Here is what I have so far but I can't figure out how to increment the 3 months on the start date: SELECT...
  13. raydan

    The delete, add, new, and Next record button; How do i get ride of it?

    I want to remove the record buttons at the bottom of my form and only have a submit button. I will have a form for editing, because I don't want people to have edit access, only new record. Can this be done? Scott
Top Bottom