Combined formula help

Flora2021

Board Regular
Joined
Apr 28, 2022
Messages
52
Office Version
  1. 365
Platform
  1. Windows
Hi, I am not sure if this is possible, but I have data, where a status column is in column G.
I use a Vlookup to return a comment from a tab called "Status codes" This formula is put into column T =VLOOKUP(G2,'Status Codes'!A:B,2,FALSE
The problem I have is that I also have to insert a comment where the dates in column M is more than 3 days older than todays date. I have this formula working in another column W
, =IF((NOW()-M4)>3, "No CLM Update in 3+ days", "") but I need it to also be put into column T but only if the row in blank for column T.Is this even possible?
SO basically only do the Date calculation part, if the "comment" column is blank for that row?
 
Column J- It will be in each row for each record.
 

Attachments

  • Screenshot 2024-07-11 103021.png
    Screenshot 2024-07-11 103021.png
    33.5 KB · Views: 4
Upvote 0

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Column J- It will be in each row for each record.
Okay.

See if this works:
Excel Formula:
=LET(n,IF((NOW()-M2)>3, "No CLM Update in 3+ days", IF((NOW()-J2)>2,"ETA DATE CHANGE","")),v,XLOOKUP(G2,'Status Codes'!A:A,'Status Codes'!B:B,n,0),IF(v<>0,v,n))
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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