문제

im not sure if i say it right.

my question is how can i get the COST of an item if then given is the Net and the GST?

도움이 되었습니까?

해결책

The basic equation is:

net = cost + (gst * cost) = cost * (1.0 + gst)

(with gst expressed as a decimal)

Therefore by algebra (dividing both sides by 1.0 + gst) you have:

cost = net / (1.0 + gst)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top