May 25, 200421 yr Newbies I have a normal billing system /with portal and a lot of items in it/. But I want to introduce a method that change the regular price of item depending on partner. I mean, generally i have only 3 type of partner and would like to differentiate the price for each type of partner.
May 25, 200421 yr I think you could accomplish this using a Case statement. Case( Type = "partnerA", price1, Type = "partnerB", price2, Type = "partnerC", price3 ) You could hard-code the prices, but it would be more dynamic to use fields that can be changed easily, instead of changing the calculation.
Create an account or sign in to comment