PC Review


Reply
Thread Tools Rate Thread

Copy from Two Cells

 
 
=?Utf-8?B?U3RldmUgQg==?=
Guest
Posts: n/a
 
      20th Aug 2007
Hello,

I have two columns, each with a Vlookup to seperate spreadsheets. Each
column will have either a "Y" or and #NA."Y" represnting that a client has
enrolled in a meeting, #NA from Vlookup in either one or both columns if the
client has not enrolled in either meeting.

So I want a third column to have a "Y" if there is a "Y" either coluimn A or
B in the same row.(or conversly a "N" if there is not a Y in either column

Thank you in advance for saving me from pulling anyu more hair out. Help
here is always terriffic.
 
Reply With Quote
 
 
 
 
PCLIVE
Guest
Posts: n/a
 
      20th Aug 2007
One Way:

=IF(COUNTIF(A1:B1,"Y"),"Y","N")

HTH,
Paul


--

"Steve B" <(E-Mail Removed)> wrote in message
news:57572D8C-1CD2-467F-8FF5-(E-Mail Removed)...
> Hello,
>
> I have two columns, each with a Vlookup to seperate spreadsheets. Each
> column will have either a "Y" or and #NA."Y" represnting that a client has
> enrolled in a meeting, #NA from Vlookup in either one or both columns if
> the
> client has not enrolled in either meeting.
>
> So I want a third column to have a "Y" if there is a "Y" either coluimn A
> or
> B in the same row.(or conversly a "N" if there is not a Y in either column
>
> Thank you in advance for saving me from pulling anyu more hair out. Help
> here is always terriffic.



 
Reply With Quote
 
=?Utf-8?B?RHVrZSBDYXJleQ==?=
Guest
Posts: n/a
 
      20th Aug 2007
This assumes the ONLY POSSIBLE cell values are Y and #N/A

=if(and(iserror(cell1),iserror(cell2)),"N","Y")

"Steve B" wrote:

> Hello,
>
> I have two columns, each with a Vlookup to seperate spreadsheets. Each
> column will have either a "Y" or and #NA."Y" represnting that a client has
> enrolled in a meeting, #NA from Vlookup in either one or both columns if the
> client has not enrolled in either meeting.
>
> So I want a third column to have a "Y" if there is a "Y" either coluimn A or
> B in the same row.(or conversly a "N" if there is not a Y in either column
>
> Thank you in advance for saving me from pulling anyu more hair out. Help
> here is always terriffic.

 
Reply With Quote
 
=?Utf-8?B?R2FyeScncyBTdHVkZW50?=
Guest
Posts: n/a
 
      20th Aug 2007
=IF(OR(A1="y",B1="y"),"y","n")
--
Gary''s Student - gsnu200738


"Steve B" wrote:

> Hello,
>
> I have two columns, each with a Vlookup to seperate spreadsheets. Each
> column will have either a "Y" or and #NA."Y" represnting that a client has
> enrolled in a meeting, #NA from Vlookup in either one or both columns if the
> client has not enrolled in either meeting.
>
> So I want a third column to have a "Y" if there is a "Y" either coluimn A or
> B in the same row.(or conversly a "N" if there is not a Y in either column
>
> Thank you in advance for saving me from pulling anyu more hair out. Help
> here is always terriffic.

 
Reply With Quote
 
Ragdyer
Guest
Posts: n/a
 
      20th Aug 2007
Try this:

=IF(AND(ISNA(A1),ISNA(B1)),"N","Y")
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"Steve B" <(E-Mail Removed)> wrote in message
news:57572D8C-1CD2-467F-8FF5-(E-Mail Removed)...
> Hello,
>
> I have two columns, each with a Vlookup to seperate spreadsheets. Each
> column will have either a "Y" or and #NA."Y" represnting that a client has
> enrolled in a meeting, #NA from Vlookup in either one or both columns if
> the
> client has not enrolled in either meeting.
>
> So I want a third column to have a "Y" if there is a "Y" either coluimn A
> or
> B in the same row.(or conversly a "N" if there is not a Y in either column
>
> Thank you in advance for saving me from pulling anyu more hair out. Help
> here is always terriffic.



 
Reply With Quote
 
=?Utf-8?B?U3RldmUgQg==?=
Guest
Posts: n/a
 
      20th Aug 2007
Thank you to all 4 who answered. Problem solved.

"Ragdyer" wrote:

> Try this:
>
> =IF(AND(ISNA(A1),ISNA(B1)),"N","Y")
> --
> HTH,
>
> RD
>
> ---------------------------------------------------------------------------
> Please keep all correspondence within the NewsGroup, so all may benefit !
> ---------------------------------------------------------------------------
>
> "Steve B" <(E-Mail Removed)> wrote in message
> news:57572D8C-1CD2-467F-8FF5-(E-Mail Removed)...
> > Hello,
> >
> > I have two columns, each with a Vlookup to seperate spreadsheets. Each
> > column will have either a "Y" or and #NA."Y" represnting that a client has
> > enrolled in a meeting, #NA from Vlookup in either one or both columns if
> > the
> > client has not enrolled in either meeting.
> >
> > So I want a third column to have a "Y" if there is a "Y" either coluimn A
> > or
> > B in the same row.(or conversly a "N" if there is not a Y in either column
> >
> > Thank you in advance for saving me from pulling anyu more hair out. Help
> > here is always terriffic.

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
copy an intial cells contents into the next series of blank cells ina column freeriderxlt Microsoft Excel Discussion 2 25th Aug 2009 07:47 AM
RE: Copy Visible Cells in Sheet with Merged and Hidden Cells FSt1 Microsoft Excel Misc 1 2nd Oct 2008 12:51 AM
macro needed to copy blocks of cells across to list of cells down =?Utf-8?B?cGllcnNvbnBybw==?= Microsoft Excel Programming 3 28th Mar 2007 12:51 PM
How to use macros to copy a range of cells which can exclude some cells which I didn't want to be copied? excelnovice Microsoft Excel Worksheet Functions 2 25th Sep 2005 12:38 AM
How to COPY from cells to cells w/o affecting respective formulae underneath ? EduardoDon Microsoft Excel New Users 1 21st Apr 2004 12:12 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:59 PM.