Hi all. I'm curious if there's a way, or any additional interest apart from mine in a way, to qualify a field so that it is upwardly inheritable. My particular wish is to have it that when a box is checked for a given item, that that checking would be reflected in the item's parents and grandparents as well. That way I can browse on a higher level and know that a given parent has at least one child with a given attribute. Doable or maybe not worth it?
~Thom
Comments
j=ubound(x)-lbound(x)+1
tot=0
for i=lbound(x) to ubound(x)
y=cdbl(x(i))
if y<>0 then tot=tot+1
next
if j>0 then ParentCheck=(tot/j)>0.5001
end function