Multiple blanks required

kellyfamily

New Member
Joined
May 22, 2017
Messages
5
Apologies if this has been covered but i couldn't the answer i was looking for.

I have a spreadsheet with the following headings

Effective Date Expiry DateStatusDate served

<tbody>
</tbody>

I am currently using the following formula under the Status heading: =IF(K21="",IF(I21<TODAY(),"UNSERVED","Pending"),"Served"), if i drag the formula down the column and do not have an expiry date status is unserved in the blank cells, how can i fix it so it remains blank until data is entered in the expiry date column, i also would like Unserved, pending and served to be different colours.

Thanks
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
=IF(K38="",IF(I38 < TODAY(),"UNSERVED","Pending"),"Served")
is the formula im using, i want the status column to remain blank
until the expiry date has been filled with the status changing
depending if it is served or unserved
 
Upvote 0
When a date is entered in the served date column or when the document has passed
the expiry date.

And thanks for this forum, i have found some really great tips
 
Upvote 0
Maybe this
Code:
=IF(K38<>"","Served",IF(I38 < TODAY(),"UNSERVED","Pending"))
 
Upvote 0
I think it still isn't quite clear what you are trying to do.
Can you show us some sample data (different scenarios) along with what your expected outcome is in each of them?
Be sure to clarify which columns are I and K.
 
Upvote 0
OK. My spreadsheet has multiple tables, but i would like these four to work together.
The first column is the effective date. (Remains blank until data is entered)
Second column is expiry date (remains blank until data is entered)
Third column is the status. If the second column has data this should say Pending, cell should be blue.
Fourth column is the date served, if a date is entered, third column is to read Served, cell should be green.
If no date is entered in column four and the expiry date has passed third column should read Unserved, cell should be green.
Please tell me if im asking to much and i will re-assess my spreadsheet
 
Upvote 0

Forum statistics

Threads
1,215,235
Messages
6,123,792
Members
449,126
Latest member
Greeshma Ravi

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