Late fee - Percentage or Flat Rate, Whichever is Greater

yellowjkjeep

New Member
Joined
Sep 16, 2017
Messages
8
Good morning all!

I am working on an Invoice reporting tool and I have everything I need done, I think, except I cannot figure out how to return a variable in Column G. What I'd like to do is return the late fee amount but how I'd like to set it up is for 5% or $35, whichever is greater. I can do either one of those, but I haven't figured out how to do both in a single cell.

I also have not yet figured out how to insert sheets on this website, but I do have a link to the project ... http://www.thistinyfarm.com/late-fees ...

Thanks in advance,
Josh
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
perhaps try this ...

=IF(and($I3>$D3,0.05*$F3>35),0.05*$F3,if(and($I3>$D3,35>0.05*$F3),35,""))

Kind regards,

Chris

 
Upvote 0
perhaps try this ...

=IF(and($I3>$D3,0.05*$F3>35),0.05*$F3,if(and($I3>$D3,35>0.05*$F3),35,""))

Kind regards,

Chris


Worked perfectly, changed to work with tables ... =IF(AND([@[Date Paid]]>[@[Payment Due]],0.05*[@[Amount ]]>35),0.05*[@[Amount ]],IF(AND([@[Date Paid]]>[@[Payment Due]],35>0.05*[@[Amount ]]),35,"")) ... and it's perfect! Thank you.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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