Trouble on #NUM display

Ferr_88

New Member
Joined
Jul 11, 2013
Messages
4
Good day fellows!

Newbie here...
I'm having a hard time eliminating the #NUM display in column K when it is not over-due...I just want it to be blank...
I've searched some #NUM error-related threads but could not find any solution to what i'm into...
I know you guys and gurus have solutions for this... by the way, I'm using Office 2010/Win7. Thanks in advance...

Ferr™

DATAThursday, July 11, 2013
ABCDEFGHIJKL
DATE
INVOICE NO.S.O. NO.QTYUNIT PRICECLIENT NAMEADDRESSTERMS(days) AMOUNT DUE DATE DAYS OVERREMARKSCHECK DATE
CHECK NO.AMOUNTDISCREPANCY
5-Mar-1310001 2103011000 200.00CUSTOMER AMLA7 200,000.0012-Mar-13121UNPAID10-Mar1001 198,000.00 2,000.00
5-Mar-1310002 2103021000 205.00CUSTOMER BMLA15 205,000.0020-Mar-13113PAID20-Mar2501 206,000.00 (1,000.00)
5-Mar-1310003 2103031000 210.00CUSTOMER C MLA20 210,000.0025-Mar-13108UNPAID26-Mar3501 150,000.00 60,000.00
5-Mar-1310004 2103041000 215.00CUSTOMER D MLA30 215,000.004-Apr-1398UNPAIDCASH 210,000.00 5,000.00
5-Mar-1310005 2103051000 220.00CUSTOMER E MLA45 220,000.0019-Apr-1383PAID CASH 225,000.00 (5,000.00)
25-Apr-1310006 2103061000 220.00CUSTOMER F MLA15 220,000.0010-May-1362PAIDCASH 220,000.00 -
30-Apr-1310007 2103071000 220.00CUSTOMER G MLA60 220,000.0029-Jun-1312PAIDCASH 220,000.00 -
1-May-1310008 2103081000 225.00CUSTOMER H MLA20 225,000.0021-May-1351UNPAID 225,000.00
5-May-1310009 2103091000 220.00CUSTOMER I MLA15 220,000.0020-May-1352UNPAID 220,000.00
10-May-1310010 2103101000 220.00CUSTOMER J MLA60 220,000.009-Jul-132UNPAID 220,000.00
10-May-1310011 2103111000 220.00CUSTOMER K MLA30 220,000.009-Jun-1332UNPAID 220,000.00
10-Jul-1310012 2103121000 220.00CUSTOMER L MLA7 220,000.0017-Jul-13#NUM!
UNPAID 220,000.00
1-Jul-1310013 2103131000 220.00CUSTOMER K MLA15 220,000.0016-Jul-13#NUM!
UNPAID 220,000.00
2,815,000.00 1,429,000.00

<tbody>
</tbody>
Formula used: Column "K" : =IF((DATEDIF(A3+H3,NOW(),"d")),(DATEDIF(A3+H3,NOW(),"d")),"") or perhaps a simplified one will be much appreciated...:)
Column "L" : =IF(I3<=O3,"PAID","UNPAID")
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hi; for column K try:

Code:
=IF(TODAY()-(A3+H3)>0,TODAY()-(A3+H3),"")

You may need to format the cells as number.
 
Upvote 0
Hi; for column K try:

Code:
=IF(TODAY()-(A3+H3)>0,TODAY()-(A3+H3),"")

You may need to format the cells as number.

thanks a lot for your quick response!
will look forward to your formula in a a couple of minutes...
anyway, for the meantime, I ended up with the conditional formatting - tweaking just the font/background color of a "column K" using white...
 
Upvote 0
Thanks FormR! i use your formula and it works great...
however, when there is no data yet for the succeeding rows below, "0-Jan-00" appears in "Column J" (i want it blank) - used Formula : =A3+H3
and in "Column K", numbers "41466" appears also...how do i make it become blank also?
One more thing, is it possible for the "Column L" be empty/blank if the days in "Column K" are not past due?

Thank you once again and I'm hoping that my problems be solved.

To the admins and mods, please bear with me...Thank you!:biggrin:
 
Upvote 0
Try:

Column J:
Code:
=IF(A3="","",A3+H3)
Column K:
Code:
=IF(A3="","",IF(TODAY()-(A3+H3)>0,TODAY()-(A3+H3),""))
Column L:
Code:
=IF(K3="","",IF(I3<=O3,"PAID","UNPAID"))
 
Upvote 0
Try:

Column J:
Code:
=IF(A3="","",A3+H3)
Column K:
Code:
=IF(A3="","",IF(TODAY()-(A3+H3)>0,TODAY()-(A3+H3),""))
Column L:
Code:
=IF(K3="","",IF(I3<=O3,"PAID","UNPAID"))

I am having so much fulfillment because it's done! Yes! my spreadsheet now has the formulas i needed and contains no error anymore!
I thank you so much for your effortless time i guess...
 
Upvote 0

Forum statistics

Threads
1,215,685
Messages
6,126,201
Members
449,298
Latest member
Jest

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