S
Stephanie
Hi, David! Hope you found this continuation post and have time to play...
I'm still loving the PrimaryFamilyMember method. So, I think the next step
(big picture) is to be able to incorporate the FamilyBucks query, the
membership dues, and the "cashed-in" Bucks into consideration so that dues
get shown as paid for the primary member and the bucks family count get
appropriately decreased (hmm, really individual bucks need to get decreased,
but I can't see that it matters which family member gets hit for their bucks-
it will likely be both members that need to cash in and there is no advantage
to "bucks hoarding"), all while keeping in mind that for a family membership
45 bucks can be cashed in but for any other category type membership, only 35
bucks can be cashed in.
Maybe the first thing is to fix the membership dues so that if there is a
PrimaryFamilyMember selected, the dues for the other family member aren't
visible (so that we don't think that both family members owe the $100 family
dues).
Contacts
ContactID
PrimaryFamilyMember
MemberCategoryID (1= Individual; 2 = Family)
DuesLineItem
DuesLineItemID
ContactsID
DuesItemTypeID (1 = Membership Dues)
AmountDue ($75 for Individual, $100 for Family)
DateCreated
DuesItemType
DuesItemType (bad naming!)
PaymentsLineItem
PaymentItemID
DuesItemID
TypeID
Amount
DateRemitted
PaymentTypes
TypeID
Type (1 = cash...., 6= ITA Bucks)
When you select the Member Category, the Dues are populated:
SELECT MemberCategory.MemberCategoryID, MemberCategory.MemberCategory,
Format([CategoryDues],"$0.00") AS DollarAmt
FROM MemberCategory;
How can I modify what I'm doing so that if there is a PrimaryFamilyMember,
the dues are populated only for the primary in the family and not for the
non-primary, but that those without a PrimaryFamilyMember, the dues are
populated. I think for the non-primary in a family relationship, I'd like to
see the Dues field[cboMemCat].column(2) "grayed-out" and have no dollar
value in it. Could you please help me with this, if it makes sense to you.
Thanks for the help!
I'm still loving the PrimaryFamilyMember method. So, I think the next step
(big picture) is to be able to incorporate the FamilyBucks query, the
membership dues, and the "cashed-in" Bucks into consideration so that dues
get shown as paid for the primary member and the bucks family count get
appropriately decreased (hmm, really individual bucks need to get decreased,
but I can't see that it matters which family member gets hit for their bucks-
it will likely be both members that need to cash in and there is no advantage
to "bucks hoarding"), all while keeping in mind that for a family membership
45 bucks can be cashed in but for any other category type membership, only 35
bucks can be cashed in.
Maybe the first thing is to fix the membership dues so that if there is a
PrimaryFamilyMember selected, the dues for the other family member aren't
visible (so that we don't think that both family members owe the $100 family
dues).
Contacts
ContactID
PrimaryFamilyMember
MemberCategoryID (1= Individual; 2 = Family)
DuesLineItem
DuesLineItemID
ContactsID
DuesItemTypeID (1 = Membership Dues)
AmountDue ($75 for Individual, $100 for Family)
DateCreated
DuesItemType
DuesItemType (bad naming!)
PaymentsLineItem
PaymentItemID
DuesItemID
TypeID
Amount
DateRemitted
PaymentTypes
TypeID
Type (1 = cash...., 6= ITA Bucks)
When you select the Member Category, the Dues are populated:
SELECT MemberCategory.MemberCategoryID, MemberCategory.MemberCategory,
Format([CategoryDues],"$0.00") AS DollarAmt
FROM MemberCategory;
How can I modify what I'm doing so that if there is a PrimaryFamilyMember,
the dues are populated only for the primary in the family and not for the
non-primary, but that those without a PrimaryFamilyMember, the dues are
populated. I think for the non-primary in a family relationship, I'd like to
see the Dues field[cboMemCat].column(2) "grayed-out" and have no dollar
value in it. Could you please help me with this, if it makes sense to you.
Thanks for the help!