Formula to calculate prorated percentage value in excel

Solved
francois -  
 francois -
Hello,
I need to assign a maximum amount for a purchase, this amount is prorated based on a percentage according to the purchase value.
Purchase 1000€ maximum aid 350€ or 30% = 300€
Purchase 4000€ maximum aid 350€ or 30% = 350€
How to create a formula in Excel
Thank you for your feedback.

7 answers

  1. PapyLuc51 Posted messages 4578 Registration date   Status Member Last intervention   1 515
     
    Hello,

    the purchase in A2

    in B2

    =IF(A2*0.3>350,350,A2*0.3)


    Best regards
    0