Remove False from Array

kspikes

New Member
Joined
Nov 19, 2020
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I am attempting to remove a FALSE response in the following formula. It gives a blank cell if goal is equal and provides the correct response if the goal is meet, but if the goal is not meet it provides FALSE. I have attempted ,""),""),"") etc. at the end, but it provides a warning of "You've entered too many arguments for this function".

=IF($A4=Goals!B$1,IF($T4>=Goals!B$4,'FCI Teller SSA'!$U$3),IF($A4=Goals!C$1,IF($T4>=Goals!C$4,$U$3),IF($A4=Goals!D$1,IF($T4>=Goals!D$4,$U$3),IF($A4=Goals!E$1,IF($T4>=Goals!E$4,$U$3),IF($A4=Goals!F$1,IF($T4>=Goals!F$4,$U$3),IF($A4=Goals!G$1,IF($T4>=Goals!G$4,$U$3),IF($A4=Goals!H$1,IF($T4>=Goals!H$4,$U$3),IF($A4=Goals!I$1,IF($T4>=Goals!I$4,$U$3),IF($A4=Goals!J$1,IF($T4>=Goals!J$4,$U$3),IF($A4=Goals!K$1,IF($T4>=Goals!K$4,$U$3),IF($A4=Goals!L$1,IF($T4>=Goals!L$4,$U$3),IF($A4=Goals!M$1,IF($T4>=Goals!M$4,$U$3),IF($A4=Goals!N$1,IF($T4>=Goals!N$4,$U$3),IF($A4=Goals!O$1,IF($T4>=Goals!O$4,$U$3),IF($A4=Goals!P$1,IF($T4>=Goals!P$4,$U$3),IF($A4=Goals!Q$1,IF($T4>=Goals!Q$4,$U$3),IF($A4=Goals!R$1,IF($T4>=Goals!R$4,$U$3,""),"")))))))))))))))))
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi & welcome to MrExcel.
You need to do it like
Excel Formula:
=IF($A4=Goals!B$1,IF($T4>=Goals!B$4,$U$3,""),IF($A4=Goals!C$1,IF($T4>=Goals!C$4,$U$3,""),IF($A4=Goals!D$1,IF($T4>=Goals!D$4,$U$3,""),
However you could probably simplify that formula to
Excel Formula:
=IF(T4>=SUMIFS(Goals!B4:R4,Goals!$B$1:$R$1,A4),$U$3)
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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