PC Review


Reply
Thread Tools Rate Thread

Addition help to edit a formula

 
 
=?Utf-8?B?SGVsbC1maXJl?=
Guest
Posts: n/a
 
      3rd Jul 2007
Hi,

I need to edit a formula and don't really know how to do it. This was made
by another person which is no longer here. I'll try my best to explain what
it does.

This forumla interacts with 9 other cells, the default setting in column C is:
XxxxxX###_xxxx_XXXxxxxx where column C = Column D # is an ID number.
For example F0705V363_GML_MagAPACS

Column D =CONCATENATE(E#,F#,G#,H#,L#,I#,L#,J#,K#) # is the row number
Column E =IF(AZ#="○", IF(BA#="-","F","B"),IF(BA#="○","I","X"))
Column F =IF(S#>0, CONCATENATE(0,LEFT(S#,3)),"xxxx")
Column G =IF(AF#="A","A",IF(AF#="V","V","X"))
Column H =B#
Column I =IF(ISBLANK(AG#)=TRUE,"xxxx",AG#)
Column J =IF(ISBLANK(AM#)=TRUE,"xxx",LEFT(AM#,3))
Column K =IF(ISBLANK(AP#)=TRUE,"xxxxx"Left(AP#,5))
Column L =_

Column B has ID numbers in it.

Now what I need to do is add Column AX in this formula that takes values
from both AX and AF. When AX has value of 1.1 and AF has either A or V, I
need Column E to respond with a 1F or 1B, instead of just F or B. But when
AX has value of 1.0, I need F or B returned.

Roger Govier was kind enough to suggest this formula:

=IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="?",
IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")

It works fine if I have AX value of 1.1, but when I have value 1.0, I loose
my F or B. I tried to understand how this works, but unfortunately I don't.
So if anyone can help me, please do and I thank anyone that willing to take a
look at this.

I hope I explained this well enough.


 
Reply With Quote
 
 
 
 
=?Utf-8?B?SkxhdGhhbQ==?=
Guest
Posts: n/a
 
      3rd Jul 2007
Roger may come back and figure a better way - but I think this version of it
will work to do what you want: with 1.1 you get like "1F", but with 1.0 you
just get "F"

=IF(AX8=1,IF(OR(AF8="A",AF8="V"),
IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),IF(AX8=1.1,IF(OR(AF8="A",AF8="V"),"1" & IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),""))


"Hell-fire" wrote:

> Hi,
>
> I need to edit a formula and don't really know how to do it. This was made
> by another person which is no longer here. I'll try my best to explain what
> it does.
>
> This forumla interacts with 9 other cells, the default setting in column C is:
> XxxxxX###_xxxx_XXXxxxxx where column C = Column D # is an ID number.
> For example F0705V363_GML_MagAPACS
>
> Column D =CONCATENATE(E#,F#,G#,H#,L#,I#,L#,J#,K#) # is the row number
> Column E =IF(AZ#="○", IF(BA#="-","F","B"),IF(BA#="○","I","X"))
> Column F =IF(S#>0, CONCATENATE(0,LEFT(S#,3)),"xxxx")
> Column G =IF(AF#="A","A",IF(AF#="V","V","X"))
> Column H =B#
> Column I =IF(ISBLANK(AG#)=TRUE,"xxxx",AG#)
> Column J =IF(ISBLANK(AM#)=TRUE,"xxx",LEFT(AM#,3))
> Column K =IF(ISBLANK(AP#)=TRUE,"xxxxx"Left(AP#,5))
> Column L =_
>
> Column B has ID numbers in it.
>
> Now what I need to do is add Column AX in this formula that takes values
> from both AX and AF. When AX has value of 1.1 and AF has either A or V, I
> need Column E to respond with a 1F or 1B, instead of just F or B. But when
> AX has value of 1.0, I need F or B returned.
>
> Roger Govier was kind enough to suggest this formula:
>
> =IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="?",
> IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
>
> It works fine if I have AX value of 1.1, but when I have value 1.0, I loose
> my F or B. I tried to understand how this works, but unfortunately I don't.
> So if anyone can help me, please do and I thank anyone that willing to take a
> look at this.
>
> I hope I explained this well enough.
>
>

 
Reply With Quote
 
=?Utf-8?B?SGVsbC1maXJl?=
Guest
Posts: n/a
 
      3rd Jul 2007
Hi JLatham,

Thank you for the suggestion, I will try it out and see how well it works.
By the way, do you have any suggestions on reading material that can help me
understand how to make formulas for Excel, so I don't have to keep bothering
everyone in the Newsgroup? Thank you


"JLatham" wrote:

> Roger may come back and figure a better way - but I think this version of it
> will work to do what you want: with 1.1 you get like "1F", but with 1.0 you
> just get "F"
>
> =IF(AX8=1,IF(OR(AF8="A",AF8="V"),
> IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),IF(AX8=1.1,IF(OR(AF8="A",AF8="V"),"1" & IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),""))
>
>
> "Hell-fire" wrote:
>
> > Hi,
> >
> > I need to edit a formula and don't really know how to do it. This was made
> > by another person which is no longer here. I'll try my best to explain what
> > it does.
> >
> > This forumla interacts with 9 other cells, the default setting in column C is:
> > XxxxxX###_xxxx_XXXxxxxx where column C = Column D # is an ID number.
> > For example F0705V363_GML_MagAPACS
> >
> > Column D =CONCATENATE(E#,F#,G#,H#,L#,I#,L#,J#,K#) # is the row number
> > Column E =IF(AZ#="○", IF(BA#="-","F","B"),IF(BA#="○","I","X"))
> > Column F =IF(S#>0, CONCATENATE(0,LEFT(S#,3)),"xxxx")
> > Column G =IF(AF#="A","A",IF(AF#="V","V","X"))
> > Column H =B#
> > Column I =IF(ISBLANK(AG#)=TRUE,"xxxx",AG#)
> > Column J =IF(ISBLANK(AM#)=TRUE,"xxx",LEFT(AM#,3))
> > Column K =IF(ISBLANK(AP#)=TRUE,"xxxxx"Left(AP#,5))
> > Column L =_
> >
> > Column B has ID numbers in it.
> >
> > Now what I need to do is add Column AX in this formula that takes values
> > from both AX and AF. When AX has value of 1.1 and AF has either A or V, I
> > need Column E to respond with a 1F or 1B, instead of just F or B. But when
> > AX has value of 1.0, I need F or B returned.
> >
> > Roger Govier was kind enough to suggest this formula:
> >
> > =IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="?",
> > IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
> >
> > It works fine if I have AX value of 1.1, but when I have value 1.0, I loose
> > my F or B. I tried to understand how this works, but unfortunately I don't.
> > So if anyone can help me, please do and I thank anyone that willing to take a
> > look at this.
> >
> > I hope I explained this well enough.
> >
> >

 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      3rd Jul 2007
Excel 2003 Formulas

http://www.amazon.com/Excel-2003-For...3452046&sr=8-1

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Hell-fire" <(E-Mail Removed)> wrote in message
news:8EAB74F4-16FC-4653-BACF-(E-Mail Removed)...
> Hi JLatham,
>
> Thank you for the suggestion, I will try it out and see how well it works.
> By the way, do you have any suggestions on reading material that can help
> me
> understand how to make formulas for Excel, so I don't have to keep
> bothering
> everyone in the Newsgroup? Thank you
>
>
> "JLatham" wrote:
>
>> Roger may come back and figure a better way - but I think this version of
>> it
>> will work to do what you want: with 1.1 you get like "1F", but with 1.0
>> you
>> just get "F"
>>
>> =IF(AX8=1,IF(OR(AF8="A",AF8="V"),
>> IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),IF(AX8=1.1,IF(OR(AF8="A",AF8="V"),"1"
>> & IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),""))
>>
>>
>> "Hell-fire" wrote:
>>
>> > Hi,
>> >
>> > I need to edit a formula and don't really know how to do it. This was
>> > made
>> > by another person which is no longer here. I'll try my best to explain
>> > what
>> > it does.
>> >
>> > This forumla interacts with 9 other cells, the default setting in
>> > column C is:
>> > XxxxxX###_xxxx_XXXxxxxx where column C = Column D # is an ID number.
>> > For example F0705V363_GML_MagAPACS
>> >
>> > Column D =CONCATENATE(E#,F#,G#,H#,L#,I#,L#,J#,K#) # is the row
>> > number
>> > Column E =IF(AZ#="?", IF(BA#="-","F","B"),IF(BA#="?","I","X"))
>> > Column F =IF(S#>0, CONCATENATE(0,LEFT(S#,3)),"xxxx")
>> > Column G =IF(AF#="A","A",IF(AF#="V","V","X"))
>> > Column H =B#
>> > Column I =IF(ISBLANK(AG#)=TRUE,"xxxx",AG#)
>> > Column J =IF(ISBLANK(AM#)=TRUE,"xxx",LEFT(AM#,3))
>> > Column K =IF(ISBLANK(AP#)=TRUE,"xxxxx"Left(AP#,5))
>> > Column L =_
>> >
>> > Column B has ID numbers in it.
>> >
>> > Now what I need to do is add Column AX in this formula that takes
>> > values
>> > from both AX and AF. When AX has value of 1.1 and AF has either A or
>> > V, I
>> > need Column E to respond with a 1F or 1B, instead of just F or B. But
>> > when
>> > AX has value of 1.0, I need F or B returned.
>> >
>> > Roger Govier was kind enough to suggest this formula:
>> >
>> > =IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="?",
>> > IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
>> >
>> > It works fine if I have AX value of 1.1, but when I have value 1.0, I
>> > loose
>> > my F or B. I tried to understand how this works, but unfortunately I
>> > don't.
>> > So if anyone can help me, please do and I thank anyone that willing to
>> > take a
>> > look at this.
>> >
>> > I hope I explained this well enough.
>> >
>> >



 
Reply With Quote
 
=?Utf-8?B?SkxhdGhhbQ==?=
Guest
Posts: n/a
 
      3rd Jul 2007
I'll second the vote for Walkenbach's book that Bob Phillips has recommended.
It reads well, the formulas work, there's a CD with all of it on it, and
much of what is presented in the book actually has a practical application in
the real world.

"Hell-fire" wrote:

> Hi JLatham,
>
> Thank you for the suggestion, I will try it out and see how well it works.
> By the way, do you have any suggestions on reading material that can help me
> understand how to make formulas for Excel, so I don't have to keep bothering
> everyone in the Newsgroup? Thank you
>
>
> "JLatham" wrote:
>
> > Roger may come back and figure a better way - but I think this version of it
> > will work to do what you want: with 1.1 you get like "1F", but with 1.0 you
> > just get "F"
> >
> > =IF(AX8=1,IF(OR(AF8="A",AF8="V"),
> > IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),IF(AX8=1.1,IF(OR(AF8="A",AF8="V"),"1" & IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),""))
> >
> >
> > "Hell-fire" wrote:
> >
> > > Hi,
> > >
> > > I need to edit a formula and don't really know how to do it. This was made
> > > by another person which is no longer here. I'll try my best to explain what
> > > it does.
> > >
> > > This forumla interacts with 9 other cells, the default setting in column C is:
> > > XxxxxX###_xxxx_XXXxxxxx where column C = Column D # is an ID number.
> > > For example F0705V363_GML_MagAPACS
> > >
> > > Column D =CONCATENATE(E#,F#,G#,H#,L#,I#,L#,J#,K#) # is the row number
> > > Column E =IF(AZ#="○", IF(BA#="-","F","B"),IF(BA#="○","I","X"))
> > > Column F =IF(S#>0, CONCATENATE(0,LEFT(S#,3)),"xxxx")
> > > Column G =IF(AF#="A","A",IF(AF#="V","V","X"))
> > > Column H =B#
> > > Column I =IF(ISBLANK(AG#)=TRUE,"xxxx",AG#)
> > > Column J =IF(ISBLANK(AM#)=TRUE,"xxx",LEFT(AM#,3))
> > > Column K =IF(ISBLANK(AP#)=TRUE,"xxxxx"Left(AP#,5))
> > > Column L =_
> > >
> > > Column B has ID numbers in it.
> > >
> > > Now what I need to do is add Column AX in this formula that takes values
> > > from both AX and AF. When AX has value of 1.1 and AF has either A or V, I
> > > need Column E to respond with a 1F or 1B, instead of just F or B. But when
> > > AX has value of 1.0, I need F or B returned.
> > >
> > > Roger Govier was kind enough to suggest this formula:
> > >
> > > =IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="?",
> > > IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
> > >
> > > It works fine if I have AX value of 1.1, but when I have value 1.0, I loose
> > > my F or B. I tried to understand how this works, but unfortunately I don't.
> > > So if anyone can help me, please do and I thank anyone that willing to take a
> > > look at this.
> > >
> > > I hope I explained this well enough.
> > >
> > >

 
Reply With Quote
 
=?Utf-8?B?SGVsbC1maXJl?=
Guest
Posts: n/a
 
      4th Jul 2007
Thank you Bob,

I will check it out. Take care.



"Bob Phillips" wrote:

> Excel 2003 Formulas
>
> http://www.amazon.com/Excel-2003-For...3452046&sr=8-1
>
> --
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my addy)
>
> "Hell-fire" <(E-Mail Removed)> wrote in message
> news:8EAB74F4-16FC-4653-BACF-(E-Mail Removed)...
> > Hi JLatham,
> >
> > Thank you for the suggestion, I will try it out and see how well it works.
> > By the way, do you have any suggestions on reading material that can help
> > me
> > understand how to make formulas for Excel, so I don't have to keep
> > bothering
> > everyone in the Newsgroup? Thank you
> >
> >
> > "JLatham" wrote:
> >
> >> Roger may come back and figure a better way - but I think this version of
> >> it
> >> will work to do what you want: with 1.1 you get like "1F", but with 1.0
> >> you
> >> just get "F"
> >>
> >> =IF(AX8=1,IF(OR(AF8="A",AF8="V"),
> >> IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),IF(AX8=1.1,IF(OR(AF8="A",AF8="V"),"1"
> >> & IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),""))
> >>
> >>
> >> "Hell-fire" wrote:
> >>
> >> > Hi,
> >> >
> >> > I need to edit a formula and don't really know how to do it. This was
> >> > made
> >> > by another person which is no longer here. I'll try my best to explain
> >> > what
> >> > it does.
> >> >
> >> > This forumla interacts with 9 other cells, the default setting in
> >> > column C is:
> >> > XxxxxX###_xxxx_XXXxxxxx where column C = Column D # is an ID number.
> >> > For example F0705V363_GML_MagAPACS
> >> >
> >> > Column D =CONCATENATE(E#,F#,G#,H#,L#,I#,L#,J#,K#) # is the row
> >> > number
> >> > Column E =IF(AZ#="?", IF(BA#="-","F","B"),IF(BA#="?","I","X"))
> >> > Column F =IF(S#>0, CONCATENATE(0,LEFT(S#,3)),"xxxx")
> >> > Column G =IF(AF#="A","A",IF(AF#="V","V","X"))
> >> > Column H =B#
> >> > Column I =IF(ISBLANK(AG#)=TRUE,"xxxx",AG#)
> >> > Column J =IF(ISBLANK(AM#)=TRUE,"xxx",LEFT(AM#,3))
> >> > Column K =IF(ISBLANK(AP#)=TRUE,"xxxxx"Left(AP#,5))
> >> > Column L =_
> >> >
> >> > Column B has ID numbers in it.
> >> >
> >> > Now what I need to do is add Column AX in this formula that takes
> >> > values
> >> > from both AX and AF. When AX has value of 1.1 and AF has either A or
> >> > V, I
> >> > need Column E to respond with a 1F or 1B, instead of just F or B. But
> >> > when
> >> > AX has value of 1.0, I need F or B returned.
> >> >
> >> > Roger Govier was kind enough to suggest this formula:
> >> >
> >> > =IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="?",
> >> > IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
> >> >
> >> > It works fine if I have AX value of 1.1, but when I have value 1.0, I
> >> > loose
> >> > my F or B. I tried to understand how this works, but unfortunately I
> >> > don't.
> >> > So if anyone can help me, please do and I thank anyone that willing to
> >> > take a
> >> > look at this.
> >> >
> >> > I hope I explained this well enough.
> >> >
> >> >

>
>
>

 
Reply With Quote
 
=?Utf-8?B?SGVsbC1maXJl?=
Guest
Posts: n/a
 
      4th Jul 2007
Thank you JLatham

"JLatham" wrote:

> I'll second the vote for Walkenbach's book that Bob Phillips has recommended.
> It reads well, the formulas work, there's a CD with all of it on it, and
> much of what is presented in the book actually has a practical application in
> the real world.
>
> "Hell-fire" wrote:
>
> > Hi JLatham,
> >
> > Thank you for the suggestion, I will try it out and see how well it works.
> > By the way, do you have any suggestions on reading material that can help me
> > understand how to make formulas for Excel, so I don't have to keep bothering
> > everyone in the Newsgroup? Thank you
> >
> >
> > "JLatham" wrote:
> >
> > > Roger may come back and figure a better way - but I think this version of it
> > > will work to do what you want: with 1.1 you get like "1F", but with 1.0 you
> > > just get "F"
> > >
> > > =IF(AX8=1,IF(OR(AF8="A",AF8="V"),
> > > IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),IF(AX8=1.1,IF(OR(AF8="A",AF8="V"),"1" & IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),""))
> > >
> > >
> > > "Hell-fire" wrote:
> > >
> > > > Hi,
> > > >
> > > > I need to edit a formula and don't really know how to do it. This was made
> > > > by another person which is no longer here. I'll try my best to explain what
> > > > it does.
> > > >
> > > > This forumla interacts with 9 other cells, the default setting in column C is:
> > > > XxxxxX###_xxxx_XXXxxxxx where column C = Column D # is an ID number.
> > > > For example F0705V363_GML_MagAPACS
> > > >
> > > > Column D =CONCATENATE(E#,F#,G#,H#,L#,I#,L#,J#,K#) # is the row number
> > > > Column E =IF(AZ#="○", IF(BA#="-","F","B"),IF(BA#="○","I","X"))
> > > > Column F =IF(S#>0, CONCATENATE(0,LEFT(S#,3)),"xxxx")
> > > > Column G =IF(AF#="A","A",IF(AF#="V","V","X"))
> > > > Column H =B#
> > > > Column I =IF(ISBLANK(AG#)=TRUE,"xxxx",AG#)
> > > > Column J =IF(ISBLANK(AM#)=TRUE,"xxx",LEFT(AM#,3))
> > > > Column K =IF(ISBLANK(AP#)=TRUE,"xxxxx"Left(AP#,5))
> > > > Column L =_
> > > >
> > > > Column B has ID numbers in it.
> > > >
> > > > Now what I need to do is add Column AX in this formula that takes values
> > > > from both AX and AF. When AX has value of 1.1 and AF has either A or V, I
> > > > need Column E to respond with a 1F or 1B, instead of just F or B. But when
> > > > AX has value of 1.0, I need F or B returned.
> > > >
> > > > Roger Govier was kind enough to suggest this formula:
> > > >
> > > > =IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="?",
> > > > IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
> > > >
> > > > It works fine if I have AX value of 1.1, but when I have value 1.0, I loose
> > > > my F or B. I tried to understand how this works, but unfortunately I don't.
> > > > So if anyone can help me, please do and I thank anyone that willing to take a
> > > > look at this.
> > > >
> > > > I hope I explained this well enough.
> > > >
> > > >

 
Reply With Quote
 
=?Utf-8?B?SkxhdGhhbQ==?=
Guest
Posts: n/a
 
      4th Jul 2007
You're welcome. One thing that Walkenbach teaches in that book is how to
deal with large, complex formulas such as you had. Basically it falls back
to the old school thought of 'if a problem is so complex you can't get a
grasp of it, break it down into smaller pieces that you can deal with
effectively'. Once you've done that you can start putting the smaller pieces
into a larger component and repeat until you have a really ugly, complex
beast that you'll probably never be able to understand again in your entire
lifetime! Well, that's the way I feel about some that I end up with out of
such things. But some (most, I think) folks are better with worksheet
formulas than I am anyhow.

"Hell-fire" wrote:

> Thank you JLatham
>
> "JLatham" wrote:
>
> > I'll second the vote for Walkenbach's book that Bob Phillips has recommended.
> > It reads well, the formulas work, there's a CD with all of it on it, and
> > much of what is presented in the book actually has a practical application in
> > the real world.
> >
> > "Hell-fire" wrote:
> >
> > > Hi JLatham,
> > >
> > > Thank you for the suggestion, I will try it out and see how well it works.
> > > By the way, do you have any suggestions on reading material that can help me
> > > understand how to make formulas for Excel, so I don't have to keep bothering
> > > everyone in the Newsgroup? Thank you
> > >
> > >
> > > "JLatham" wrote:
> > >
> > > > Roger may come back and figure a better way - but I think this version of it
> > > > will work to do what you want: with 1.1 you get like "1F", but with 1.0 you
> > > > just get "F"
> > > >
> > > > =IF(AX8=1,IF(OR(AF8="A",AF8="V"),
> > > > IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),IF(AX8=1.1,IF(OR(AF8="A",AF8="V"),"1" & IF(AZ8="?",IF(BA8="-","F","B"),IF(BA8="?","I","X")),""),""))
> > > >
> > > >
> > > > "Hell-fire" wrote:
> > > >
> > > > > Hi,
> > > > >
> > > > > I need to edit a formula and don't really know how to do it. This was made
> > > > > by another person which is no longer here. I'll try my best to explain what
> > > > > it does.
> > > > >
> > > > > This forumla interacts with 9 other cells, the default setting in column C is:
> > > > > XxxxxX###_xxxx_XXXxxxxx where column C = Column D # is an ID number.
> > > > > For example F0705V363_GML_MagAPACS
> > > > >
> > > > > Column D =CONCATENATE(E#,F#,G#,H#,L#,I#,L#,J#,K#) # is the row number
> > > > > Column E =IF(AZ#="○", IF(BA#="-","F","B"),IF(BA#="○","I","X"))
> > > > > Column F =IF(S#>0, CONCATENATE(0,LEFT(S#,3)),"xxxx")
> > > > > Column G =IF(AF#="A","A",IF(AF#="V","V","X"))
> > > > > Column H =B#
> > > > > Column I =IF(ISBLANK(AG#)=TRUE,"xxxx",AG#)
> > > > > Column J =IF(ISBLANK(AM#)=TRUE,"xxx",LEFT(AM#,3))
> > > > > Column K =IF(ISBLANK(AP#)=TRUE,"xxxxx"Left(AP#,5))
> > > > > Column L =_
> > > > >
> > > > > Column B has ID numbers in it.
> > > > >
> > > > > Now what I need to do is add Column AX in this formula that takes values
> > > > > from both AX and AF. When AX has value of 1.1 and AF has either A or V, I
> > > > > need Column E to respond with a 1F or 1B, instead of just F or B. But when
> > > > > AX has value of 1.0, I need F or B returned.
> > > > >
> > > > > Roger Govier was kind enough to suggest this formula:
> > > > >
> > > > > =IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="?",
> > > > > IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
> > > > >
> > > > > It works fine if I have AX value of 1.1, but when I have value 1.0, I loose
> > > > > my F or B. I tried to understand how this works, but unfortunately I don't.
> > > > > So if anyone can help me, please do and I thank anyone that willing to take a
> > > > > look at this.
> > > > >
> > > > > I hope I explained this well enough.
> > > > >
> > > > >

 
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
Formula for addition tigermoth Microsoft Excel Worksheet Functions 3 27th Feb 2008 12:01 PM
Addition string from input box in to a formula (eg;R1C1 Formula) =?Utf-8?B?RGV2?= Microsoft Excel Programming 2 31st Jan 2007 07:36 PM
Addition formula =?Utf-8?B?Q2hhbmNl?= Microsoft Excel Misc 1 14th Oct 2004 09:16 PM
Addition Formula =?Utf-8?B?Q2hhbmNlMjI0?= Microsoft Excel Misc 0 14th Oct 2004 06:57 PM
Addition Formula Chance Microsoft Excel Misc 3 10th Oct 2003 05:34 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:04 AM.