Allrightythen!
Try this:
=IF(SUM(G4:H4)=0,"Company Direct",IF(G4=1,"Partnered on Brand
X","Partner Direct"))
In English it says if they're both zero write "Company Direct",
otherwise if G4 is 1 then write "Partnered on Brand X" otherwise (ie,
not both zero and not a 1 in G4) write "Partner Direct"
That will work as long as those are the only 3 possibilities.
On May 9, 5:47 pm, AnnArborBrian
<AnnArborBr...@discussions.microsoft.com> wrote:
> Also, there are a couple of conditions that are "Mixed" where some business
> units on the account are "Partnered", and some are Partner Direct, such that
[quoted text clipped - 9 lines]
> > Would someone please suggest a formula for this, I rarely work with Excel
> > and it is a Friday . . .
AnnArborBrian - 10 May 2008 02:03 GMT
Thanks, it mostly works, except for the "Mixed" conditions I described
previously (see below). Is there a way that that condition can also be
modeled?
> Allrightythen!
> Try this:
[quoted text clipped - 21 lines]
> > > Would someone please suggest a formula for this, I rarely work with Excel
> > > and it is a Friday . . .
AnnArborBrian - 10 May 2008 14:29 GMT
After reviewing in detail my data file, I have the remaining condition to
solve. In some contexts certain companies have individual business units
that are either direct or partnered, constituting a "Mixed" model. The data
for this varies in values (an artifact of the original data source), but
essentially is *not* equal to 1.
> Partnered Partner
> on Brand X Direct
[quoted text clipped - 5 lines]
> 0.99 0
> 0 .54
These conditions are reflected in an existing column (say F) with the
following formula:
=IF(AND(E4<>"",OR(G4<>INT(G4),H4<>INT(H4))),"Mixed"," ")
Column E = Customer Name
Is there a way I can add this to the recommended formula (from Reitanos) to
resolve everything in the new column I, to include the "Mixed" condition?
=IF(SUM(G4:H4)=0,"Company Direct",IF(G4=1,"Partnered on Brand
X","Partner Direct"))
Maybe I am asking the impossible, and I should just transpose the current
"Mixed" occurances to the new column I manually.
Thank you for any and all assistance. There are three files I need to do
this against, for the Americas, EMEA and APAC so it would help not to have to
search manually (each has over 750 lines of data. . . )
Best regards,
Brian
> Allrightythen!
> Try this:
[quoted text clipped - 21 lines]
> > > Would someone please suggest a formula for this, I rarely work with Excel
> > > and it is a Friday . . .