RE: Profit Price Calculation
The formula for the validation is like below:
"Price/Profit Calculation"::"Price=Cost+Profit":
if "Profit %" < 100 then begin
GetGLSetup;
"Unit Price" :=
Round(
("Unit Cost" / (1 - "Profit %" / 100)) *
(1 + CalcVAT),
GLSetup."Unit-Amount Rounding Precision");
So flesh that out with your values step by step:
"Unit Cost" = 10,000
1-30 / 100 = 0.7
VAT = 0
Rounding will be whatever. Resulting in this equation:
(10,000 / 0.7) * 1 = 14285.71429