rlinsurf Posted February 13, 2007 Posted February 13, 2007 I have two fields: Networks and Servers. There can be many Servers which all belong to the same Network. But no Servers belong to more than one Network. Each record I have looks something like this: Network Server A a A b B a B b B c C a So what I'm trying to find is -- using a Calc field if possible so the data can remain constant, i.e., not dependent on summary layouts -- how many Servers does each Network have? (In this case, A=2, B=3, C=1).
Genx Posted February 13, 2007 Posted February 13, 2007 You should have a related structure: Two Tables: Network NetworkID_PK cn_numberServers Where cn_numberServers is a calculation field result number = Count(Servers::NetworkID_FK) Servers NetworkID_FK ServerID_PK
rlinsurf Posted February 13, 2007 Author Posted February 13, 2007 I'll try setting it up that way... Thanks.
Recommended Posts
This topic is 6840 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