Multiplying by percentages

B

ButchG

I am trying to add several fields together and then multiply the sum by 15%.
Any suggestions on how to do this?
 
G

Greg Collins [InfoPath MVP]

15% is the same as 0.15

So you could have: (Field1 + Field2 + Field3) * 0.15
 
Top