Newbies Langy Posted June 6, 2007 Newbies Posted June 6, 2007 : I have a simple database for a sports club. The tables are Player, Team and Selection. In the Player table is a field called Available. It is either "Y" or "N". I want to populate a Selection Portal for each team using a value list of available players. I cant make the value list work. It either shows all players or only players previously selected. Why can't I find the answer to my problem? What is the meaning of life? Sorry, I digressed ... : Please help! TIA Langy!
Genx Posted June 6, 2007 Posted June 6, 2007 42 - LOL!, Best book ever. To be honest i don't get the question. Could you post a sample?
Newbies Langy Posted June 12, 2007 Author Newbies Posted June 12, 2007 A sport club, that has many teams (table), wishes to record which players (table) play in given weeks and record goals and best player points etc. The club records which players are 'unavailable' with a checkbox (field = Y). The transaction table is populated through a portal from the Teams table and a drop down list of AVAILABLE PLAYERS is required. I need help making this value list so that only AVAILABLE PLAYERS are shown ... Thanks
mr_vodka Posted June 12, 2007 Posted June 12, 2007 You can have the player flagged as available. I personally would use a boolean number field with a checkbox. However in regards to your sample, you can create a calculation field and then reference that calc field for your drop down instead of the player field itself. Case ( available = "Y"; PlayerName ) or if using boolean num flag Case ( available; PlayerName )
Recommended Posts
This topic is 6375 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