greenfields Posted March 27, 2009 Posted March 27, 2009 I have a table called "day" with a single record for each day. I have another table called "Mail" containing many records for each day. The two tables are related by date. There is a field in "Mail" called "temp". This is a dropdown containing HOT, WARM or COLD. I want to put a field in "day" called "hot" which counts the amount of records in "Mail" where "temp" = HOT. please help!
bcooney Posted March 27, 2009 Posted March 27, 2009 Put a calc field in Day that equals "Hot." Relate Day to Mail by Date and Hot=temp. Create a calc in Day cntHot = count (HotRelationship::Date)
comment Posted March 27, 2009 Posted March 27, 2009 Try: ValueCount ( FilterValues ( List ( Mail::temp ) ; "HOT" ) ) --- P.S. A single record for each day? Is that really necessary?
greenfields Posted March 27, 2009 Author Posted March 27, 2009 nothaving much joy, could you maybe expand example? many thanks
Recommended Posts
This topic is 5779 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now