Complex IF formula

L

Legacy 469343

Guest
Hi everyone,

I hope I can explain in detail, what I need.

Cell J12 reflects the required date of drawing 101 for PO 123456. For this I used the formula: =IF(ISBLANK($B12),"",$B12+14)
Cell J13 needs to reflect the required date of drawing 102, based on the date drawing 101 was sent back to the manufacturer + 2 weeks, which is reflected in cell N12. But still linked to PO 123456. But also only when the status of drawing 101 is status 1.

And above I also need for the next Company / PO 123457.

How can I do this?

Link to Excel file: Sheet.xlsx
 

Attachments

  • 1.png
    1.png
    48.9 KB · Views: 11

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi, if I understood this correctly. How about this formula in Cell J13?

Excel Formula:
=IF(AND(E13=E12,I12=1),N12+14,"")

Edit :

Or this to keep the column empty and neater until the drawing has been sent back.

Excel Formula:
=IF(N12="","",(IF(AND(E13=E12,I12=1),N12+14,"")))
 
Last edited:
Upvote 0
Solution

Forum statistics

Threads
1,214,385
Messages
6,119,205
Members
448,874
Latest member
Lancelots

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