Window Change Event help need

chamdan

New Member
Joined
Dec 14, 2009
Messages
18
Need help in achieving the following:

Change the value of the range "L5" to "NS" when Cell "K5" is empty then change "L5" to "IP" when the value in Cell "K5" is anything between 1% to 99% then change the value of "L5" to "CO" when the value of "L5" is equal to 100% and at last if the Date in "G5" is less than Today's date and the value in "K5" is less than 100% then change the value in "L5" to "OD".

Where, NS = Not Started, IP = In Progress, CO = Completed and OD = Overdue.


I look forward to your help.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I think that has it covered
Code:
=IF(K5="","NS",IF(AND(G5 < TODAY(),K5<100%),"OD",IF(K5<100%,"IP",IF(K5=100%,"CO",""))))
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,256
Members
452,901
Latest member
LisaGo

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