macmasterservices Posted October 18, 2013 Posted October 18, 2013 I am building a database of art pieces, and I have a field for Net Sale Price that is dependent on the field Type of Sale, which has three radio button choices from a value list (Private, Auction, Gallery). Depending on which of these three choices is made, Net Sale Price needs to pull figures from one of three fields: Private Sale Price, Winning Auction Bid, or Gallery Sale Price. It seems I need to use the Evaluate function in the Net Sale Price field calculation, but I need a little "kickstart" here... ;-)
comment Posted October 18, 2013 Posted October 18, 2013 No, you need to use the Case() function: Case ( Type of Sale = "Private" ; Private Sale Price ; Type of Sale = "Auction" ; Winning Auction Bid ; Type of Sale = "Gallery" ; Gallery Sale Price ) 1
Recommended Posts
This topic is 4393 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