Formula Issues - Trying to show oldest figure in 'Days Old'.

DaveMTR

New Member
Joined
Feb 15, 2018
Messages
3
Hello all, and thank you in advance for your help.

So I am trying to make a spreadsheet to fill in daily email totals for work.

I have attached an image of a small section of the spreadsheet I am struggling with.

I'm looking for column C7 to display the oldest day from the range in C8 - C14 (which I would manually enter), so for example, in the image I have entered the amount of emails at each 'day old'. In my example, the oldest would 5 days old, and I'm looking for C7 to display '5' or '5 Days Old' or something similar.

The formula I am currently trying is:

=IF(ISBLANK(C8)," ",">5"),IF(ISBLANK(C9)," ","5"),IF(ISBLANK(C10)," ","4"),IF(ISBLANK(C11)," ","3"),IF(ISBLANK(C12)," ","2"),IF(ISBLANK(C13)," ","1"),IF(ISBLANK(C14)," ","0")

but this is returning '#VALUE!'

I would assume I am using the wrong formula (I assumed it would work left to right, so if C8 was blank it wouldn't display anything and move to the next IF for C9 etc).

Again, any help is much appreciated before I start to tear my hair out.

Kind regards.
Dave
ichb3
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Welcome to Mr Excel forum

Try
=INDEX(B8:B14,MATCH(1,INDEX(--ISNUMBER(C8:C14),),0))

Hope this helps

M.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,034
Messages
6,122,782
Members
449,095
Latest member
m_smith_solihull

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