Ruenell

New Member
Joined
Dec 12, 2007
Messages
9
I can't seem to get this to work
=IF(ISNUMBER(SEARCH("Rejected",A2)) =IF(isblank,"","Today"))

Any help would be appreciated.

Dorinda
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Could you please explain what you are trying to do?
 
Upvote 0
I want it to look at the first column and if it contains Reject in it and the comments field is not blank I want to return todays date
 
Upvote 0
What column is the comments field in?
 
Upvote 0
I can get them to work seperately just cant get them to work togehter

=IF(ISNUMBER(SEARCH("Rejected",A2)),"ok","not") I added the OK not OK to make sure it was working I do not want it as part of the formula.
=IF(ISBLANK(B2),"",(TODAY()))
 
Last edited:
Upvote 0
How about
=IF(AND(ISNUMBER(SEARCH("Rejected",A2)),B2<>""),TODAY(),"")
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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