Simple IF formula problem

AlmostBeginner19

New Member
Joined
Oct 30, 2019
Messages
11
I think this problem is just really simple but for some reason I couldn't just get what to do.

I have the following formula. My only issue is the highlighted part.
=IFERROR(IF(Column A="Supplier",IF(OtherSheet[Date Column 1]="","Not Received",INDEX(OtherSheet[Date Column 1],MATCH(1,INDEX((Column C=OtherSheet[Column C])*(OtherSheet[Column E]="Yes"),0,1),0))),"Not Applicable"),"Not Received")

That part alone is my problem. It is a date column which I enter manually whenever I need to make an entry. When the cellis blank, the formula returns either 0-Jan-1990, or "Not Received". The "Not Received" is what I expect it to return. The problem is, when I'm evaluating the formula, it gives a random number when the source cell is blank such as 43871 or 43963, etc. So it results in this example =IFERROR(IF(Column A="Supplier",IF(43871=0,...……..).

I hope someone could help me identify and resolve the issue.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
If Column 1 actually is a date it should work, a date is simply a number that will always be >=1, if it is blank or zero it is <1.

What is in Col 1?
 
Upvote 0
If Column 1 actually is a date it should work, a date is simply a number that will always be >=1, if it is blank or zero it is <1.

What is in Col 1?

Just dates. When there's no date, it's just blank. I just now noticed that it's not only the date column. It's other columns also.
And yeah, I already tried wrapping the formula in an ISBLANK formula instead of using ="", but I'm getting the same result.
 
Upvote 0
How are the dates entered?
if you click on a cell with a date in, then click the comma icon, what is displayed?
 
Upvote 0
How are the dates entered?
if you click on a cell with a date in, then click the comma icon, what is displayed?

It's on a date format (e.g. 12-Jul-2020). When I click comma style, it turns into a number value (e.g. 44,024.00).

I think I got it now, though I haven't tried it with all of the columns yet because there are 10+ columns, but so far for the rest of the columns, it's working. I added the part in BOLD on the formula below.

=IFERROR(IF(IF(Column A="Supplier",IF(OtherSheet[Date Column 1]="","Not Received",INDEX(OtherSheet[Date Column 1],MATCH(1,INDEX((Column C=OtherSheet[Column C])*(OtherSheet[Column E]="Yes"),0,1),0))),"Not Applicable")="","",IF(Column A="Supplier",IF(OtherSheet[Date Column 1]="","Not Received",INDEX(OtherSheet[Date Column 1],MATCH(1,INDEX((Column C=OtherSheet[Column C])*(OtherSheet[Column E]="Yes"),0,1),0))),"Not Applicable")),"Not Received")
 
Upvote 0
Looking at your formula, I would say that there are a lot of points where it could fail.

I've tried to break it down bit you have misplaced parentheses and a number of range descriptions which are unclear. Does 'Column A' mean entire column, or just the cell in the same row as the formula? From what I can see (given the limited information that we have) it is highly likely that the formula will not be comparing data on the current sheet to the 'other sheet' correctly.
 
Upvote 0
Looking at your formula, I would say that there are a lot of points where it could fail.

I've tried to break it down bit you have misplaced parentheses and a number of range descriptions which are unclear. Does 'Column A' mean entire column, or just the cell in the same row as the formula? From what I can see (given the limited information that we have) it is highly likely that the formula will not be comparing data on the current sheet to the 'other sheet' correctly.

I copied the formula exactly as I've used it, except that I changed the column names into simpler forms such as "Column A". This is because the column names we use are a bit lengthy due to some requirements so I minimized the column names to avoid confusion. Columns I mentioned are just columns that cover a range, not the entire worksheet column.

Also it would be helpful if you point out which parentheses are misplaced, since like I said, I copied the formula as it is, except that I changed the column names. I just hope that people would be more "this is where you could improve" instead of "you wrote it wrong".
 
Upvote 0
Maybe worth checking if the cell is actually blank. Sometimes there are white spaces which impact the forumal. You can use TRIM to remove those cells that appear blank but actually contain a space in it.
 
Upvote 0

Forum statistics

Threads
1,214,810
Messages
6,121,690
Members
449,048
Latest member
81jamesacct

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