EXCEL idiot

beividepabs

New Member
Joined
Jul 22, 2011
Messages
3
Hello All,

I hope someone can help and excuse my ignorance.

I have tried to get a function working to sort out a problem I have.

I have a database that has a column containing email addresses. I need to compare each email address on column I from Sheet1 with all email addresses from Sheet3 (A2, A3, A4 onwards) and return "sent" if = and "to be sent" if not.

I have tried (possibly incorrectly) VLOOK UP AND IF but not joy.
e.g =IF(Sheet3!A:A=Sheet1!I2,"SENT","TO BE SENT ")

Can someone help?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Try in Sheet1 row 2 copied down

=IF(ISNUMBER(MATCH(I2,Sheet3!A:A,0)),"Sent","To be sent")
 
Upvote 0
Hello & Welcome to the Board,

Maybe try...

=IF(ISNUMBER(MATCH(I2,Sheet3!A:A,0)),"Sent","To be Sent")
 
Upvote 0
Hello All,

I hope someone can help and excuse my ignorance.

I have tried to get a function working to sort out a problem I have.

I have a database that has a column containing email addresses. I need to compare each email address on column I from Sheet1 with all email addresses from Sheet3 (A2, A3, A4 onwards) and return "sent" if = and "to be sent" if not.

I have tried (possibly incorrectly) VLOOK UP AND IF but not joy.
e.g =IF(Sheet3!A:A=Sheet1!I2,"SENT","TO BE SENT ")

Can someone help?

VLOOKUPs aren't my speciality but try this, but change the A50 to however long your A column on sheet 3 is:

Code:
=VLOOKUP(Sheet1!I2,Sheet3!A2:A50,1,FALSE)
 
Upvote 0
Hi,

I think you are gonna put all the e-mail address ( the main data ) in column A of sheet 2 . In sheet 1 , in column A , you put the e mail address to be compared,right ? If so, in B1 of sheet 1 , you type the formula ,

=IF(ISNA(A1=MATCH(A1,Sheet2!$A:$A,0)),"TO BE SENT","SENT") and pull it down , so that it gets copied to B2,B3,B4 and so on. The result , "TO BE SENT" OR "SENT" will be shown in column B.

Try this.

Regards,Manuel
 
Upvote 0
Guys,
:)
I cant believe it how helpful, I hope will be able to help people too one day!

MANY tahnks for your help all options provided work

Have a great Weekend

Regards
Pablo

Hello & Welcome to the Board,

Maybe try...

=IF(ISNUMBER(MATCH(I2,Sheet3!A:A,0)),"Sent","To be Sent")
 
Upvote 0

Forum statistics

Threads
1,221,811
Messages
6,162,114
Members
451,743
Latest member
matt3388

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