Nested IFs?

Cuzzaa

Board Regular
Joined
Apr 30, 2019
Messages
86
Hi everyone

I'm using the below code which works fine:

Code:
=IFERROR(IF(J29="As Required","Confirm Qty",J29*K29),)

But I'm trying to work out how to add another if statement into the above code at the end so that the following also happens:

If K29="Item Not Found" then ALSO in L29 print "Update List", otherwise J29*K29

Does that make sense, please could someone give me a hand? I've tried using the IFS statement and I can't get it to work properly :(

Thank you!
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
IF K29="Item Not found"

This is text, you cant multiply text as in J29*K29
You need to establish its not text FIRST.

so, maybe

=IFERROR(IF(J29="As Required","Confirm Qty",IF(K29="Item Not Found", "Update List", J29*K29)),)
 
Upvote 0

Forum statistics

Threads
1,214,782
Messages
6,121,532
Members
449,037
Latest member
tmmotairi

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