EOM formula

markvsmy

New Member
Joined
May 19, 2019
Messages
6
Hello,

I am sorting my accounting spreadsheet and using the formula IF(J4="30EOM",EOMONTH(C4,0)+30) which works, the problem I have is adding more If variables for this file, most customers are 30 days EOM, but some are 45 EOM, some are just 30 days, some are 60 days. If I can get the first IF variable to work I am sure can then add the rest.

For info I will use a drop down menu to input which of the payment terms applies, C4 is the date, J4 is the payment terms

DateCustomerInvoiceAmountVATVATTotalTermsDue
01/04/17XXX Logistics285£1,020.00Y£204.00£1,224.0030EOM30/05/17

<colgroup><col><col><col span="7"></colgroup><tbody>
</tbody>

Thanks in advance for help,

Kind regards
Mark
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
k
How about this?

Code:
=IF(RIGHT(J4,3)="EOM",EOMONTH(C4,0)+SUBSTITUTE(J4,"EOM",""))

Wow very clever really impressed thank you works perfectly :)

I have also got just straight 30 and 60 days from invoice date to incorporate in the J column, I guess I could code it 60FI and 30FI but how could I make that work with the code above is that possible?

You might be thinking just stick to 1 set of payment terms, but I run a courier business and these different payment terms are set by other courier companies I sometimes do sub contract work for.

Thanks again
Mark
 
Upvote 0
I guess it would be

=IF(RIGHT(J4,2)="FI",C4+SUBSTITUTE(J4,"FI",""),IF(RIGHT(J4,3)="EOM",EOMONTH(C4,0)+SUBSTITUTE(J4,"EOM","")))
 
Last edited:
Upvote 0
I guess it would be

=IF(RIGHT(J4,2)="FI",C4+SUBSTITUTE(J4,"FI",""),IF(RIGHT(J4,3)="EOM",EOMONTH(C4,0)+SUBSTITUTE(J4,"EOM","")))

Awesome, thank you so much, going to study this now to understand how it works, works a treat :)
 
Upvote 0
Sorry one last question, I have the word "False" where no data is input on the accounts sheet yet, used iserror years ago, and also used conditional formatting to hide it, what would you recommend? Thanks
 
Upvote 0
I would recommend that you decide what should happen if there something other than nnEOM or nnFI in J4, and we build the formula to act accordingly.
 
Upvote 0
I would recommend that you decide what should happen if there something other than nnEOM or nnFI in J4, and we build the formula to act accordingly.

I would just need it to be blank as its waiting for data entry when the next invoice is produced, I have solved with conditional formatting but its a crude way of fixing it

Thanks
 
Upvote 0
Rich (BB code):
=IF(J4="", "", 
IF(RIGHT(J4,2)="FI", C4+SUBSTITUTE(J4,"FI",""),
IF(RIGHT(J4,3)="EOM", EOMONTH(C4,0)+SUBSTITUTE(J4,"EOM",""), "ERROR")))

Alternatively, if payment is always due only in 30, 45 or 60 days (or any 2-digit number of days, 10 to 99), and if the suffix is only "FI" or "EOM":

Rich (BB code):
=IF(J4="", "", IF(RIGHT(J4,2)="FI", C4, EOMONTH(C4,0) + LEFT(J4, 2)))

However, according to a wiki page, the term "net 30 end of month" usually means the end of the month on or after 30 days. In other words, EOMONTH(C4+30,0), not EOMONTH(C4,0)+30.

In that case:

Rich (BB code):
=IF(J4="", "", 
IF(RIGHT(J4,2)="FI", C4+SUBSTITUTE(J4,"FI",""),
IF(RIGHT(J4,3)="EOM", EOMONTH(C4+SUBSTITUTE(J4,"EOM",""),0), "ERROR")))

or

=IF(J4="", "", IF(RIGHT(J4,2)="FI", C4+LEFT(J4,2), EOMONTH(C4+LEFT(J4, 2),0)))

Caveat.... SUBSTITUTE is case-sensitive, but the RIGHT(...)=... is not. So "30fi" results in a #VALUE error. If that is an issue, use UPPER(J4) in the SUBSTITUTE expressions.
 
Upvote 0
Hi thanks, the EOM is paid 30 or 45 days after the last day of the previous month (ie month work was carried out) will try the third version, thank you
 
Upvote 0

Forum statistics

Threads
1,213,568
Messages
6,114,348
Members
448,570
Latest member
rik81h

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