Calculating a percentage if less than a fixed amount

whdell

New Member
Joined
Mar 25, 2018
Messages
2
=IF(G50<="647200",G50*80%,"647200")
if G50 is less than or equal to 647200 then enter 80% of the lower value, if it exceeds the 247200 enter 247200
The above formula calculates the percentage if it is over the limit.
What am I doing wrong?
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
where does 247200 fit into your equation as you mention it but dont reference it?
if you remove the " " from your equation it should work
Excel Formula:
=IF(G50<=64720,G50*80%,647200)
 
Upvote 0
where does 247200 fit into your equation as you mention it but dont reference it?
if you remove the " " from your equation it should work
Excel Formula:
=IF(G50<=64720,G50*80%,647200)
That worked! I was using the web to find something close but that didn't work. Thank you so much!
 
Upvote 0

Forum statistics

Threads
1,214,817
Messages
6,121,720
Members
449,050
Latest member
MiguekHeka

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top