Late fee IF 30 days LESS than two different dates

MarieEx

New Member
Joined
Jun 5, 2019
Messages
8
h
Good day to you all,

I need help. I am trying to create a column for late fees, if either Registration Date (C) or RX received (D) are LESS than 30 days from Camp Start date (I). Basically if we receive either the registration or the Rx less than 30 days from camp session start date I have to charge a late fee.

So far this is what I can come up with, but the info that is giving me is incorrect.

=IF(OR(A2<=(E2-30),B2<=(E2-30)),"$10.00","")
h

Thanks in advance
Registration DateRX Received DateLate FeeOTC/RXCamp Session Start DateCamp NameDurationSIB
05/29/1906/01/19?OTC06/16/19ABC14Y
04/15/1905/09/19?RX06/16/19ABC28Y
05/01/1905/09/19?RX06/16/19ABC17N
06/01/1906/04/19?RX06/16/19ABC10Y

<tbody>
</tbody>
 
Following please my actual columns. The Late Fee column is filled in with your formula.
OK, it looks like you changed the format again, and have records missing dates (which wasn't mentioned initially).
It is kind of hard to help you and give you an answer that works when you keep changing things!

Please provide us with the correct details, specifically:
- What columns exactly do each of the three dates appear in?
- What do non-date entries (like "N", "Yes", and blank) mean and how should they be treated (what do you want to happen in each of those instances)?
- If there is anything else that needs to be accounted for, please mention it here.

On a side note, if this is a form that people are filling out, I would recommend implementing Cell Validation on these date columns to prevent non-date entries from being entered.
 
Last edited:
Upvote 0

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Good morning,

Thank you for your help and sorry about the confusion.

I didn't change the format, I omitted cells for simplicity purposes, my original worksheet ends at column AY and I thought it'd be easier if I presented them here as A,B,C,D. Before I copied your formula into my sheet I changed the cells to the correct ones and ran it down.

The non-data Y entry means I do not yet have the date for the registration. The N entry means the person has either not registered and/or sent the Rxs in. With these, now that you mentioned them, maybe they can result in a different kind of result, maybe a "Missing".

If you look at the last sample I sent you, lines 9-16 (omitting #15 ) were received more than 30 days from the camp start date of June 18. These should NOT have the $10 late fee. I need the late fee to show up when the registration OR the Rxs were received 30 days or less from the camp start date.


Again thank you for help with this.
 
Upvote 0
I didn't change the format, I omitted cells for simplicity purposes, my original worksheet ends at column AY and I thought it'd be easier if I presented them here as A,B,C,D. Before I copied your formula into my sheet I changed the cells to the correct ones and ran it down.
OK. The fact that you were getting difference results than me on the same data tells me that you probably weren't making the proper adjustments to the formula. So, pay very close attention to the changes that you need to make to adapt it to your structure.

Here is a formula for your last example, that assumes that the dates are in column A, B, and E. So, place this formula on row 2 and copy down for all rows:
Code:
=IF(OR(A2="",ISTEXT(A2),B2="",ISTEXT(B2)),"Dates Missing",IF(OR(E2-A2<=30,E2-B2<=30),10,""))
When I applied this to your last set of test data, I got a mixture of 10 fees, blanks, and text of "Dates Missing".
It appeared to pull back the correct expected value in every instance.

If you do not see the same, please provide a specific example, and tell me what it is returning.
 
Upvote 0
You are welcome.
Glad we were able to get it to work.
 
Upvote 0

Forum statistics

Threads
1,216,095
Messages
6,128,790
Members
449,468
Latest member
AGreen17

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