#VALUE ERROR on formula

excelbrands

New Member
Joined
Jun 25, 2020
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Can you look at the attached and see why I am getting this error? I am combining formulas and I am sure I am missing something. I hid the columns that are not being referenced. I basically want to score accounts (1,2,3). Some rows work and some throw that #VALUE! error.
 

Attachments

  • formula help.JPG
    formula help.JPG
    160.6 KB · Views: 5

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Would be able to see it if you provided the formula.
=IF(AND(M3>0,X3>(TODAY()-90))=TRUE,"1",IF((OR(IFERROR(FIND("competitor 1",E3,1),"0"),IFERROR(FIND("competitor 2",E3,1),"0"),IFERROR(FIND("competitor 3",E3,1),"0"),IFERROR(FIND("competitor 4",E3,1),"0"),IFERROR(FIND("competitor 5",E3,1),"0"),IFERROR(FIND("competitor 6",E3,1),"0"),IFERROR(FIND("competitor 1",T3,1),"0"),IFERROR(FIND("competitor 2",T3,1),"0"),IFERROR(FIND("competitor 3",T3,1),"0"),IFERROR(FIND("competitor 4",T3,1),"0"),IFERROR(FIND("competitor 5",T3,1),"0"),IFERROR(FIND("competitor 6",T3,1),"0")))=TRUE,"2","3"))
 
Upvote 0
The OR is not going to like "0" but will be happy with 0 so remove those quotes.
 
Upvote 0
Solution
You could try this:

=IF(AND(M3>0,X3>(TODAY()-90)),1,IF(OR(ISNUMBER(FIND("competitor "&{"1","2","3","4","5","6"},E3)),ISNUMBER(FIND("competitor "&{"1","2","3","4","5","6"},T3))),2,3))
 
Upvote 0

Forum statistics

Threads
1,215,049
Messages
6,122,864
Members
449,097
Latest member
dbomb1414

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