popup message not deactivated

shaniwafa

New Member
Joined
Sep 7, 2018
Messages
10
Hi, I am maintaining a monthly utility schedule with column D5 to show the last date to pay bill, column E5 for the amount (which is linked from a particular utility account), and column F5 for messages to popup on at regular intervals according to the approach of maturity date. But, even when the amount column E5 shows zero after the bill being settled, the message is still active. If the amount column shows less than 1, preferably no message should appear in F5, till new bill gets entered in the particular utility account. How can this be rectified? Your response will be highly appreciated.

Formula currently being used:

IF(D5<=TODAY(),"MES -1",IF(D5< today()+2,"mes-2",if(D5< today()+6,"mes-3","")))
 
Last edited by a moderator:

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Wrap your formula in another IF function to test the E5 Value...
=IF(E5<1,"",IF(D5<=TODAY(),"MES -1",IF(D5< TODAY()+2,"mes-2",IF(D5< TODAY()+6,"mes-3",""))))
 
Upvote 0
Thanks for your answer. A new formula I could learn through your wonderful suggestion. Thanks.
I wish to add one more condition, same like date column to consider?
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

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