asgweb Posted June 26, 2008 Posted June 26, 2008 Hello and thanks in advance for your help. I have a radio button (SaleChoice) with 3 values. I'm trying to find 'Price' determined by which of the radio values are chosen. I'm using this code but I get the error.."This field (FixedPrice etc) not found" Price = Case( SaleChoice = FixedPrice, Price1, SaleChoice = ReverseAuction, Price2, SaleChoice = Purchase, Price3 )
comment Posted June 26, 2008 Posted June 26, 2008 I'm guessing you want: Case( SaleChoice = "FixedPrice", Price1, SaleChoice = "ReverseAuction", Price2, SaleChoice = "Purchase", Price3 )
Recommended Posts
This topic is 5994 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