Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add a certain percentage to currency field 1

Status
Not open for further replies.

AuctionLamb

Programmer
Feb 16, 2005
65
ZA
Hi guys!

I have a field called mUnit_Price, how do I create another field next to it with 14% added to that field.

For example I have $10 and want to add 14% to that on my next field so my new field next to that field will show $11.40. How will I do that?
 
here is a quick way

{mUnit_Price} + (({mUnit_Price}/100)*14)

Mo
 
sorry I forgot

Create a formula field and put the following

{mUnit_Price} + (({mUnit_Price}/100)*14)

and then place the formula on your report side by side to the {mUnit_Price} field

Mo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top