Recent content by Nicolette

  1. N

    income expenses query not showing all records

    Yeah i played with a union query and i don't think it is what i'm looking for I'm pretty sure that the merger of a select query is what i need....
  2. N

    income expenses query not showing all records

    Well I still haven't figured this out so I guess i'm just gonna drop the idea for now. If you do have any ideas let me know otherwise.... Thanks for your help!
  3. N

    income expenses query not showing all records

    I know fresh eyes Oh my knowledge has absolutly expanded from when I started.
  4. N

    income expenses query not showing all records

    Oh I am so frustrated!!! I have officially tried everything that my limited knowledge allows.....
  5. N

    income expenses query not showing all records

    Query 2 is the one I have been working on. the form with the buttons is frmViewAvaliableReports
  6. N

    income expenses query not showing all records

    I know it needs a ton of work.... right now i'm still developing and testing and I haven't cleaned anything up so there a some unused queries and such... I have tried to keep it normalized but no promises. There are still some things I would like to put into the DB eventually but If I can get...
  7. N

    income expenses query not showing all records

    ok so since for testing purposes i'm only using dataview of the query at this point when I run the query I want to see all Listings for a monthe and a year that I enter. If there is a sale off one of those listings I want that sale information but the sale is during that same month and year. as...
  8. N

    income expenses query not showing all records

    Maybe I misunderstood. It seems to be date related yes. So you are suggesting using the filter in the command button to display the records I want right? but I need to be able to enter the month and year that I want. and If there are no sales I want just listings if there are sales I want both...
  9. N

    income expenses query not showing all records

    Ok thanks for the tips I will make the adjustments but this doesn't solve the problems I'm having with my query.
  10. N

    income expenses query not showing all records

    no problem here it is
  11. N

    income expenses query not showing all records

    the month and year a simply query parameters
  12. N

    income expenses query not showing all records

    I have attached a picture of the results that I get with the following SQL statement SELECT tblListings.ListingDte, tblOrderHeader.OrderDte, qryFinalProductIncomeExpenseCalculation.OrderID, tblInventory.Picture, tblListings.SKU, qryFinalProductIncomeExpenseCalculation.ProductTitle...
  13. N

    income expenses query not showing all records

    i just had a pop up form with command buttons to open each report that is all that is on that specific from is command buttons one for each form
  14. N

    income expenses query not showing all records

    this isn't for a form it is for a report
  15. N

    income expenses query not showing all records

    ok this might be progress ;-) I changed the where clause as follows WHERE DateSerial(Year([Enter Start Date mm/dd/yyyy/]), Month([Enter End Date mm/dd/yyyy])-1,1) And DateSerial(Year([Enter Start Date mm/dd/yyyy/]), Month([Enter End Date mm/dd/yyyy]),0) The problem i'm having with this is it...
Top Bottom