Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I have a spreadsheet listing members of staff, dates they have attended
training and their status regarding their training. They are either operational or suspended. Conditional formatting will only allow me to change the font of text in the cell. Is there a function that will automatically change the text depending on different conditions ie once a date has expired the cell changes from operational to suspended automatically? |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Is there a function that will
automatically change the text depending on different conditions ie once a date has expired the cell changes from operational to suspended automatically? I dont know the specific conditions you wish to apply here but here is an example formula that should get you in the right direction. =IF(MONTH(A1)<2,"Operational","Suspended") This formula relies on a date being entered into cell A1. If the month in that cell is not equal to February, then the cell will display "Operational". If it is = to February, then the cell will display "Suspended". If you have any trouble adapting this to your needs, post again or email me, I'll be glad to help. Mark |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Let's say the dates attended are in column B and we want status in column C.
Just for this example, I am assuming that after one year (365 days) the training is expired. if C1 enter: =IF(TODAY()-B1365,"suspended","operational") and copy down Naturally you will adjust the 365 to meet your criteria. -- Gary's Student gsnu200705 "Confuzed" wrote: I have a spreadsheet listing members of staff, dates they have attended training and their status regarding their training. They are either operational or suspended. Conditional formatting will only allow me to change the font of text in the cell. Is there a function that will automatically change the text depending on different conditions ie once a date has expired the cell changes from operational to suspended automatically? |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Just another thought ..
Assuming dates in B2 down, try in C2: =IF(B2="","",IF(TODAY()=DATE(YEAR(B2)+1,MONTH(B2) ,DAY(B2)),"suspended","operational")) Copy C2 down -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Confuzed" wrote: I have a spreadsheet listing members of staff, dates they have attended training and their status regarding their training. They are either operational or suspended. Conditional formatting will only allow me to change the font of text in the cell. Is there a function that will automatically change the text depending on different conditions ie once a date has expired the cell changes from operational to suspended automatically? |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
The former assumes a 1 year "post training" period as the valid operational
status -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sumproduct issues | Excel Worksheet Functions | |||
resetting last cell | Excel Discussion (Misc queries) | |||
How do I set up multiple logical conditions on one result cell | Excel Worksheet Functions | |||
Possible Lookup Table | Excel Worksheet Functions | |||
Copy cell format to cell on another worksht and update automatical | Excel Worksheet Functions |