IFS function issue...

Sleeplol

Board Regular
Joined
Apr 10, 2019
Messages
194
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hello everyone,

I'm assuming this is the ideal function, but I could be way off.

Issue on "data" page: Need name of employee (column E) to register a "Division" (e.g. Administrative, Maintenance, Shipping, Production) in another Cell (column W)

On "Employees" page I have a the four "division" columns with all of the corresponding employees listed under each.

If the name on the "data" page is recognized on that list, then the specific division shows in column W.

Each division title is cell 1 of that column on the "employees" page.

Here's my current formula:

=IFS([@[Observer name]]=Employees!A:A,Employees!$A$1,[@[Observer name]]=Employees!B:B,Employees!$B$1,[@[Observer name]]=Employees!C:C,Employees!$C$1,[@[Observer name]]=Employees!D:D,Employees!$D$1)

Thanks for any correction
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Here's an alternative:

=INDEX(Employees!$A$1:$D$1,SMALL(IF(COUNTIF(OFFSET(Employees!$A:$A,0,{0,1,2,3}),[@[Observer Name]]),{1,2,3,4}),1))
 
Upvote 0
Eric,
Thank you!
I was just now able to test this and it works exactly like i had asked.

However, if the "observer name" cell is blank or if there is a name not recognized, is there a way to return a blank?
 
Upvote 0
Perhaps

=IFERROR(LOOKUP(2,1/COUNTIF(OFFSET(Employees!$A:$A,0,{0,1,2,3}),[@[Observer Name]]),Employees!$A$1:$D$1),"")

Eric's formula looks like it should return an error in the cells that should be blank, so using IFERROR with that should work as well.
 
Upvote 0
Jason is correct, this should work:

=IFERROR(INDEX(Employees!$A$1:$D$1,SMALL(IF(COUNTIF(OFFSET(Employees!$A:$A,0,{0,1,2,3}),[@[Observer Name]]),{1,2,3,4}),1)),"")

although he came up with a slightly shorter version.
 
Upvote 0
Jason and Eric,
Thank you, both formulas work.
I ended up shifting the lists on the "Employee" page from A:D to B:E and making Column A "None". Reason is, whenever a "blank" cell was entered into the "observer name" it would return "Administration", or in Jason's formula "Production". But yet if I "delete or backspace that same "blank" field it returns a blank cell (ideal). Anyway, wasn't sure how to delete only "blank" cells, so for now the quick fix is returning "None".

Thank again guys.
 
Upvote 0
It sounds as if that blank cell isn't truly blank, but contains a space character of some kind. A fairly common occurence with data copied from browsers.
 
Upvote 0

Forum statistics

Threads
1,214,957
Messages
6,122,466
Members
449,086
Latest member
kwindels

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