Recent content by waka

  1. W

    Need help aggreggating

    Hi all, I have a puzzle I've been trying to solve for a couple of days and can't come up with a solution. I have a table with counts of bugs (Bug_Counts) and a lookup table for the bugs (tlu_Bugs). The lookup table describes the taxonomic classification (Phylum, Class, Order, Family, Genus...
  2. W

    Subqueries and aggregates

    That is correct. Each record in tbl_Surveys should get an associated temperature value.
  3. W

    Subqueries and aggregates

    Sorry for not being clearer. The Date I'm using is Date(ET) - what was the formatting error you found in query7?
  4. W

    Subqueries and aggregates

    Jdraw - thanks for replying. I realize that the tables are not related, because they will not be in the final database and I realize there are some formatting issues, but these are not my primary concern at this point. I just need to figure out the logic of these queries and I can clean it up...
  5. W

    Subqueries and aggregates

    I've attached the database with the 2 tables a 3 queries. I think I may just have to run a macro with the 3 queries..
  6. W

    Subqueries and aggregates

    Thanks Guus for replying. I'm not too concerned with the first 2 queries, the formula that I'm using now to calculate the date difference seems to work and I could combine them using a subquery. The real problem I'm facing is keeping the temperature data when I use the MIN aggregate query...
  7. W

    Subqueries and aggregates

    I have 2 tables: Table 1 (tbl_Temp) contains temperature data for a particular park at a certain date/time. Table 2 (tbl_Surveys) contains survey data that was conducted at a certain date/time I need to find the nearest date/time for each survey in Table 2 to Table1 and import the temperature...
  8. W

    Export to Excel Single/Float format

    Thank you for the responses. What I don't understand, however, is if the data is entered as 129.01 in the database, why isn't it stored as 129.010000000000? I tried running an update query to round the numbers to the decimal places. But when I export it to excel it still shows...
  9. W

    Export to Excel Single/Float format

    I have a couple of fields in my database that are formatted single or float. I've noticed that when I export the data to excel it changes these numbers. For example if I have 129.01 in a field (format=single) in excel it will show up as 129.009994506835. Why is it doing this and how can I get...
  10. W

    Preventing duplicates

    I have a database that links individual trees to a plot. The tree table has a tree_number field that contains a numeric tag number. I'm trying to figure out a way to restrict the tag number so that duplicate numbers can not be entered in the same plot. Is this possible? Thanks!
  11. W

    Refresh for Subform Popup

    Mstef, I tried inserting your statement again in my "on click" expression and that worked! Not sure what I did wrong the first time I tried it, but thanks!
  12. W

    Refresh for Subform Popup

    No, it doesn't invoke a macro. It just opens up another form.
  13. W

    Refresh for Subform Popup

    SiGill: Yes, this is my problem. Did you find a way to avoid having to click on another cell to get the table to refresh? It's annoying for my users to have to click on another record and then click the button.
  14. W

    Refresh for Subform Popup

    Mstef: I actually tried putting that statement in already. I tried it in the "on click" expression for the button and also in the "lost focus" expression for the continuous form. Neither seemed to work.
  15. W

    Refresh for Subform Popup

    I have a continuous form with with a button that links to another form. The continuous form is based on a query that brings together two tables: tbl_trees and tbl_tree_data. The linked form is linked to tbl_tree_data, but includes two additional subforms: xref_Tree_Conditions...
Back
Top Bottom