Nested IFS statement

GcOtt

New Member
Joined
Nov 2, 2017
Messages
10
Greetings, Im having some trouble returning a value in my IFS statement and am hoping for some help.
I am trying to pull data from one column when a specific data set is present and in addition another column when an employee count is present - Here is what ive got and im getting "NA":
=IFS(A2="Random Text",IF(Master!C2="0-9",240))

Thanks in advance for your help here!
 
hi, sorry - BUT this does not help
whatever etc
As i said we need
So
what are all the possible valid values for A2 ?
what are all the possible valid values for C2 ?
So in a table have the following values for C
0-9,10-99, 11-499,500-1499,1500-4999

Then In another column have
column A are text values ABC company, DEF

The you can do 2 COUNTIF ()
So
=AND ( COUNTIF(Table of C value, C2)>0, COUNTIF(Table of A value, A2)>0 )
then if both those value are present on the Table - it will be TRUE for both conditions
Then use an IF
=IF( AND ( COUNTIF(Table of C value, C2)>0, COUNTIF(Table of A value, A2)>0 ), 240, 0)
 
Upvote 0

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
hi, sorry - BUT this does not help

As i said we need
So

So in a table have the following values for C
0-9,10-99, 11-499,500-1499,1500-4999

Then In another column have
column A are text values ABC company, DEF

The you can do 2 COUNTIF ()
So
=AND ( COUNTIF(Table of C value, C2)>0, COUNTIF(Table of A value, A2)>0 )
then if both those value are present on the Table - it will be TRUE for both conditions
Then use an IF
=IF( AND ( COUNTIF(Table of C value, C2)>0, COUNTIF(Table of A value, A2)>0 ), 240, 0)
OK this sounds awesome Ill give it a try thanks again for your help here very much appreciated!
 
Upvote 0

Forum statistics

Threads
1,214,561
Messages
6,120,239
Members
448,951
Latest member
jennlynn

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