By using this website, you agree to our Terms of Use (click here)
I am wanting to create a new column on the Sales Quotes screen, on the Document Details tab that is the nett each price, for when there is more than one quantity of each item. So basically I can create a column, but I want it to calculate =CROpportunityProducts.CuryAmount/CROpportunityProducts.Quantity
I have a fair knowledge of customisation projects, however, this is a bit beyond my experience.
How can I do this? I also have several other columns I want to add calculations into, so the answer on how to do this will assist greatly.
Thanks.
Have you tried using adding a PXFormula attribute to your new field?
I think it would be something to the effect of:
[PXFormula(typeof(Div<CROpportunityProducts.curyAmount,CROpportunityProducts.quantity>)]
If you can't do it in a [Formula] attribute, then you may need to do it with some C# code.