The Missing Man Posted January 2, 2012 Posted January 2, 2012 I want a drop down list to show me all my Vendors from my Company Table. Background: In my company table I have a field called (Name) to list the name of companies and then one with check boxes (Choices_Client_Vendor) to identify if the name is a vendor or a client. Sometimes they can be both so this is why the check box. To create the drop down list I created a new field called CompanyVendor in my Company Table based on the following Case: Case ( Choices_Client_Vendor = "Vendor" ; Name; Choices_Client_Vendor = "Client" & "Vendor" ; Name ; "" ) My value list shows me all my records that only list "Vendor" in the (Choices_Client_Vendor) field but will not show me the ones that have both "Client" and "Vendor" checked. Am I going about this the right way or am I all backwards? Any help appreciated. Thanks in advance.
Raybaudi Posted January 2, 2012 Posted January 2, 2012 Case( ValueCount ( FilterValues ( Choices_Client_Vendor ; "Vendor" ) ) ; Name )
The Missing Man Posted January 2, 2012 Author Posted January 2, 2012 That did it! Thanks for your help.
Recommended Posts
This topic is 4709 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