Nested IF formula with multiple criteria not working

CaptainGravyBum

New Member
Joined
Dec 1, 2023
Messages
46
Office Version
  1. 365
Platform
  1. Windows
OK, I've tried my best, but I just can't find out what is going on with this formula. Chat GPT is usually a little helpful, but even that is stumped - you can't beat good old fashioned brain power so I'm hoping you can help.

The link to my file is below, I'm trying to add a formula in column R of the upload template sheet which looks for various criteria to be met before providing a result - mainly because there is a lot of error checking due to the data being provided by various people who can make errors. I can get cell R2 to return 8:00 which is correct, but then everything else is false, as though it looks at the first IF and ignores all others. At the moment it's ignoring the cells which don't return a time which is what I want, but also returning false for the cells where there should be data.

=IFERROR(
IF('Vigo Data'!AF1=0,IF(AND((SEARCH("AM",Q2)), 'Vigo Data'!AF1 >= TIME(5, 0, 0), 'Vigo Data'!AF1 <= TIME(11, 59, 0)), 'Vigo Data'!AF1,"")&
IF('Vigo Data'!AF1=0,IF(AND((SEARCH("PM", Q2)), 'Vigo Data'!AF1 >= TIME(12, 1, 0), 'Vigo Data'!AF1 <= TIME(23, 59, 0)), 'Vigo Data'!AF1,"")&
IF('Vigo Data'!AF1=0,IF(AND((SEARCH("TIME", Q2)), 'Vigo Data'!AF1 >= TIME(0, 1, 0), 'Vigo Data'!AF1 <= TIME(23, 59, 0)), 'Vigo Data'!AF1,"")))),"")



 
Yeah, that was just to make sure the columns where the correct letters.
The mini sheet knows which columns they are and will reflect them accurately.

Now, which conditions should return the different manually entered times?
 
Upvote 0

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
The mini sheet knows which columns they are and will reflect them accurately.

Now, which conditions should return the different manually entered times?
I may be asking it to do too much, but if column Q is "AM" it will need the time from the vigo sheet AF column that needs to be between 5am and 11:59 if that's not there it should return 10:00
if Q says "PM" it needs a time between 12:00 and 23:59 in column AF, it is isn't there it needs to return 14:00
if Q says "TIME" it needs a time between 00:01 and 23:59 in column AF, it is isn't there it needs to return 11:00
If none of the conditions are met the cell should be blank.
 
Upvote 0
Ok, reworked the formula a little bit. See if this does what you want: (ignore the results in column R)
Cell Formulas
RangeFormula
R2:R8R2=IFERROR(IF('Vigo Data'!AF1>0,IF(AND(Q2="AM", 'Vigo Data'!AF1 >= TIME(5, 0, 0), 'Vigo Data'!AF1 <= TIME(11, 59, 0)), 'Vigo Data'!AF1,"10:00"),"")&IF('Vigo Data'!AF1>0,IF(AND(Q2="PM", 'Vigo Data'!AF1 >= TIME(12, 1, 0), 'Vigo Data'!AF1 <= TIME(23, 59, 0)), 'Vigo Data'!AF1,"14:00"),"")&IF('Vigo Data'!AF1>0,IF(AND(Q2="TIME", 'Vigo Data'!AF1 >= TIME(0, 1, 0), 'Vigo Data'!AF1 <= TIME(23, 59, 0)), 'Vigo Data'!AF1,"11:00"),""),"")
S2:S8S2=IFERROR(IF('Vigo Data'!AF1<>"",IF(AND(Q2="AM",OR('Vigo Data'!AF1 <= TIME(5, 0, 0),'Vigo Data'!AF1 >= TIME(11, 59, 0))),"10:00",IF(AND(Q2="PM",OR('Vigo Data'!AF1 <= TIME(12, 1, 0), 'Vigo Data'!AF1 >= TIME(23, 59, 0))),"14:00",IF(AND(Q2="TIME",OR('Vigo Data'!AF1 <= TIME(0, 1, 0), 'Vigo Data'!AF1 >= TIME(23, 59, 0))),"11:00",'Vigo Data'!AF1))),""),"")


Book1
ACADAEAF
1GB24A453488:00:00 AM
2GB24P453482:00:00 PM
3GB24T4534812:00:00 AM
4GB2445348
5GB4845349
6GB2445348
7GB2445348
Vigo Data
 
Upvote 1
=IFERROR(IF('Vigo Data'!AF1<>"",IF(AND(Q2="AM",OR('Vigo Data'!AF1 <= TIME(5, 0, 0),'Vigo Data'!AF1 >= TIME(11, 59, 0))),"10:00",IF(AND(Q2="PM",OR('Vigo Data'!AF1 <= TIME(12, 1, 0), 'Vigo Data'!AF1 >= TIME(23, 59, 0))),"14:00",IF(AND(Q2="TIME",OR('Vigo Data'!AF1 <= TIME(0, 1, 0), 'Vigo Data'!AF1 >= TIME(23, 59, 0))),"11:00",'Vigo Data'!AF1))),""),"")
Hi @dreid1011
I tried the formula you provided, the first two cells are returning fine because there is data in the source file, I'm just not getting results when there isn't anything in the lookup cells.

Upload Copy.xlsm
QR
1ServiceDelivery Time
2AM08:00
3PM14:00
4TIME 
5ND 
6EC 
7ND 
8ND 
Upload Template
Cell Formulas
RangeFormula
Q2:Q8Q2=VLOOKUP('Vigo Data'!AD1,Instructions!Z:AB,3,0)
R2:R8R2=IFERROR(IF('Vigo Data'!AF1<>"",IF(AND(Q2="AM",OR('Vigo Data'!AF1 <= TIME(5, 0, 0),'Vigo Data'!AF1 >= TIME(11, 59, 0))),"10:00",IF(AND(Q2="PM",OR('Vigo Data'!AF1 <= TIME(12, 1, 0), 'Vigo Data'!AF1 >= TIME(23, 59, 0))),"14:00",IF(AND(Q2="TIME",OR('Vigo Data'!AF1 <= TIME(0, 1, 0), 'Vigo Data'!AF1 >= TIME(23, 59, 0))),"11:00",'Vigo Data'!AF1))),""),"")
Cells with Conditional Formatting
CellConditionCell FormatStop If True
S4,R:RCell Value="ENTER TIME"textNO
 
Upvote 0
Ok, I have fixed the problem above, the less than more than lookups were the wrong way round. Only trouble is that I now get FALSE when the criteria isn't met at any stage.
I tried iferror to get rid, but it doesn't work, any thoughts?
Upload Copy.xlsm
QR
1ServiceDelivery Time
2AM08:00
3PM14:00
4TIME11:00
5NDFALSE
6ECFALSE
7NDFALSE
8NDFALSE
Upload Template
Cell Formulas
RangeFormula
Q2:Q8Q2=VLOOKUP('Vigo Data'!AD1,Instructions!Z:AB,3,0)
R2:R8R2=IFERROR(IF(Q2="AM",IF(AND('Vigo Data'!$AF1>=TIME(5,0,0),'Vigo Data'!$AF1<=TIME(11,59,0)),'Vigo Data'!$AF1,"10:00"),IF(Q2="PM",IF(AND('Vigo Data'!$AF1>=TIME(12,1,0),'Vigo Data'!$AF1<=TIME(23,59,0)),'Vigo Data'!$AF1,"14:00"),IF(Q2="TIME",IF(AND('Vigo Data'!$AF1 >= TIME(5, 0, 0),'Vigo Data'!$AF1 <= TIME(23, 59, 0)),'Vigo Data'!$AF1,"11:00")))),"")
 
Upvote 0
Ok, I have fixed the problem above, the less than more than lookups were the wrong way round. Only trouble is that I now get FALSE when the criteria isn't met at any stage.
I tried iferror to get rid, but it doesn't work, any thoughts?
Upload Copy.xlsm
QR
1ServiceDelivery Time
2AM08:00
3PM14:00
4TIME11:00
5NDFALSE
6ECFALSE
7NDFALSE
8NDFALSE
Upload Template
Cell Formulas
RangeFormula
Q2:Q8Q2=VLOOKUP('Vigo Data'!AD1,Instructions!Z:AB,3,0)
R2:R8R2=IFERROR(IF(Q2="AM",IF(AND('Vigo Data'!$AF1>=TIME(5,0,0),'Vigo Data'!$AF1<=TIME(11,59,0)),'Vigo Data'!$AF1,"10:00"),IF(Q2="PM",IF(AND('Vigo Data'!$AF1>=TIME(12,1,0),'Vigo Data'!$AF1<=TIME(23,59,0)),'Vigo Data'!$AF1,"14:00"),IF(Q2="TIME",IF(AND('Vigo Data'!$AF1 >= TIME(5, 0, 0),'Vigo Data'!$AF1 <= TIME(23, 59, 0)),'Vigo Data'!$AF1,"11:00")))),"")
Actually, I think that I've solved that as well now

Upload Copy.xlsm
QR
1ServiceDelivery Time
2AM08:00
3PM14:00
4TIME11:00
5ND 
6EC 
7ND 
8ND 
Upload Template
Cell Formulas
RangeFormula
Q2:Q8Q2=VLOOKUP('Vigo Data'!AD1,Instructions!Z:AB,3,0)
R2:R8R2=IF(Q2="AM",IF(AND('Vigo Data'!$AF1>=TIME(5,0,0),'Vigo Data'!$AF1<=TIME(11,59,0)),'Vigo Data'!$AF1,"10:00"),IF(Q2="PM",IF(AND('Vigo Data'!$AF1>=TIME(12,1,0),'Vigo Data'!$AF1<=TIME(23,59,0)),'Vigo Data'!$AF1,"14:00"),IF(Q2="TIME",IF(AND('Vigo Data'!$AF1 >= TIME(5, 0, 0),'Vigo Data'!$AF1 <= TIME(23, 59, 0)),'Vigo Data'!$AF1,"11:00"),"")))
 
Upvote 0
Solution
Actually, I think that I've solved that as well now

Upload Copy.xlsm
QR
1ServiceDelivery Time
2AM08:00
3PM14:00
4TIME11:00
5ND 
6EC 
7ND 
8ND 
Upload Template
Cell Formulas
RangeFormula
Q2:Q8Q2=VLOOKUP('Vigo Data'!AD1,Instructions!Z:AB,3,0)
R2:R8R2=IF(Q2="AM",IF(AND('Vigo Data'!$AF1>=TIME(5,0,0),'Vigo Data'!$AF1<=TIME(11,59,0)),'Vigo Data'!$AF1,"10:00"),IF(Q2="PM",IF(AND('Vigo Data'!$AF1>=TIME(12,1,0),'Vigo Data'!$AF1<=TIME(23,59,0)),'Vigo Data'!$AF1,"14:00"),IF(Q2="TIME",IF(AND('Vigo Data'!$AF1 >= TIME(5, 0, 0),'Vigo Data'!$AF1 <= TIME(23, 59, 0)),'Vigo Data'!$AF1,"11:00"),"")))
I'm not sure how or why you were getting different results than I was unless your description of what you wanted wasn't accurate, but I turned the '>=' '<=' symbols around on purpose. Either way, glad you got it working.
 
Upvote 1
I'm not sure how or why you were getting different results than I was unless your description of what you wanted wasn't accurate, but I turned the '>=' '<=' symbols around on purpose. Either way, glad you got it working.
Yes, not sure what changed, but I got to the correct answer with your help.
Thanks for your persistence getting it working 👍
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,958
Members
449,096
Latest member
Anshu121

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