Recent content by pfiroz

  1. P

    Doing a simple query for a list box

    I'm missing something probably small but it's not obvious to me how to get the Entity_ID in frmMain (which is based on tblMain) and the Entity_ID in tblsupportingmaterials to match up. This list box on frmMain is based on and queries tblsupportingMaterials.
  2. P

    Doing a simple query for a list box

    Hi Thanks for that input. So my form is called frmMain and the text box that is already on the form that has Entity_id is called Entity ID. So where would I put Forms![frmMain]![Entity ID] on the form? The unbound list box is also on the form and has the following query in it's row source...
  3. P

    Adding a command button to open a form and matching keys ?

    Hi, I'm just trying to add a simple command button on a form based off of a table called tblMain. This table has a key called Entity_id. So on the form, I added a command button to open another form based on tblsupporting materials. This table also had a value called entity_id. So when I use the...
  4. P

    Doing a simple query for a list box

    Hi, I haven't done any Access in a while and cant remember how to do this simple thing. I just want to query a suppporting materials table so that all the supporting filenames appear in a list box for a particular person. So I have two tables, One is called Main with all the people each with a...
  5. P

    Getting multiple columns in a table into one column

    Oh Never mind..I'm an idiot lol The 3 columns are called Donation1 , Donation2 , and Donation3 NOT Donations1, Donations2, Donations3 Thanks!
  6. P

    Getting multiple columns in a table into one column

    Hey, Hmm well I tried that buy am doing something wrong. I put the code below in the sql window but when I try to run it, it asks for the parameter value tblFinancialConnections.Donations1 etc.. But I have a table called tblFinancialConnections and a field called Donations1. I double checked ??
  7. P

    Getting multiple columns in a table into one column

    Hi, I'm trying to make this work. How do I implement this within a query? The table name is tblFinancialConnections and the three columns to be stacked are Donantions1 , Donations2, and Donations3. I started building a query and pulled those columns into the grid but where to I put the sql text...
  8. P

    Getting multiple columns in a table into one column

    Oh I just saw the last response. Ya thats exactly what I need. Thanks!! :)
  9. P

    Getting multiple columns in a table into one column

    Hi, Thanks for the reply. Actually that will just concatenate the fields. That's not what I need though. I need to stack the columns into one column. so if there are 10 observations in column 1 to column 3 then the stacked column would need to have 30 obs.
  10. P

    Getting multiple columns in a table into one column

    Hi All :) I have an issue that seem like it would be an easy thing to do but not sure how. I just basically need to get three columns in a table into one column to I can do a query on that one column. But before I do the query I need all the data from the three columns. Whats the best way to do...
  11. P

    Help building a two level query

    Hi,:o I'm stuck on what seems would be fairly easy but its not quite working right. Basically, I just want to do a 2 level query. I have a main table with alot of peoples names (first, middle, last). I have an affiliations table with people who are affiliated to the people in the main table...
  12. P

    Printing a report to the printer

    Thanks Guys!! I put It worked great! :)
  13. P

    Printing a report to the printer

    Hi, Thanks for the reply. No I can't just hit Ctrl P because Im not going to be the one using the database. The database will allow the user to do a search and have the results display in a subform. The report is based on this and will update as the search changes. I have a button for the user...
  14. P

    Printing a report to the printer

    Hi All :) I have a pretty basic question but I've never done it before. I built a report called 'rptPrintSearchResults'. I just want to write vba to print it to printer. How do I do that? It's based off a query that will change depending on the search the user does. Once the user does his/her...
  15. P

    Getting an argument from one subroutine into another ??

    Hey Thanks!! I used your suggestion of copying the value on my form and making the text box invisible. Then I just called the value of the text box when I run the print subroutine. Thanks! :)
Back
Top Bottom