Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 31
Default Help with editing a formula

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.

I beleive I have to modify Column E's formula to do this. If your confused,
please let me know and I will try to explain better. I thank everyone that
may try to help me.



  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default Help with editing a formula

Hi

I think the following does what you want

=IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="? ",
IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
I used row 8 when testing, so substituted for your # in the formula.
--
Regards

Roger Govier


"Hell-fire" wrote in message
...
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.

I beleive I have to modify Column E's formula to do this. If your
confused,
please let me know and I will try to explain better. I thank everyone
that
may try to help me.





  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 31
Default Help with editing a formula

Hi Roger,

Thank you for your help. I tried your formula, but I don't get a 1B or 1F.
Do you think I need to modify some other cell formula? Thank you again.


"Roger Govier" wrote:

Hi

I think the following does what you want

=IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="? ",
IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
I used row 8 when testing, so substituted for your # in the formula.
--
Regards

Roger Govier


"Hell-fire" wrote in message
...
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.

I beleive I have to modify Column E's formula to do this. If your
confused,
please let me know and I will try to explain better. I thank everyone
that
may try to help me.






  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 31
Default Help with editing a formula

Hi Roger,

Nevermind, it worked, chalk it up to user error, I thought I copied your
formula exactly. Thank you again for your help


"Roger Govier" wrote:

Hi

I think the following does what you want

=IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="? ",
IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
I used row 8 when testing, so substituted for your # in the formula.
--
Regards

Roger Govier


"Hell-fire" wrote in message
...
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.

I beleive I have to modify Column E's formula to do this. If your
confused,
please let me know and I will try to explain better. I thank everyone
that
may try to help me.






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 31
Default Help with editing a formula

Hi again,

One problem now with that formula, if I enter 1.0 in cell AX, and either —‹
or - in cell BA, I loose my F or B. Is there something else I need to do to
the formula? Thank you.

"Roger Govier" wrote:

Hi

I think the following does what you want

=IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="? ",
IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
I used row 8 when testing, so substituted for your # in the formula.
--
Regards

Roger Govier


"Hell-fire" wrote in message
...
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.

I beleive I have to modify Column E's formula to do this. If your
confused,
please let me know and I will try to explain better. I thank everyone
that
may try to help me.








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default Help with editing a formula

Hi

You originally asked for the test to be AX=1.1
That's what the formula looks for. Are you saying you need a range of
values for AX?

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

--
Regards

Roger Govier


"Hell-fire" wrote in message
...
Hi again,

One problem now with that formula, if I enter 1.0 in cell AX, and
either ?
or - in cell BA, I loose my F or B. Is there something else I need to
do to
the formula? Thank you.

"Roger Govier" wrote:

Hi

I think the following does what you want

=IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="? ",
IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
I used row 8 when testing, so substituted for your # in the formula.
--
Regards

Roger Govier


"Hell-fire" wrote in message
...
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.

I beleive I have to modify Column E's formula to do this. If your
confused,
please let me know and I will try to explain better. I thank
everyone
that
may try to help me.








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default Help with editing a formula

Hi

I have only just noticed that my NG reader has changed the degree
symbol in the formula to a "?"
In both cases, where the ? appears, there should be a degree symbol.
--
Regards

Roger Govier


"Roger Govier" wrote in message
...
Hi

You originally asked for the test to be AX=1.1
That's what the formula looks for. Are you saying you need a range of
values for AX?

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

--
Regards

Roger Govier


"Hell-fire" wrote in message
...
Hi again,

One problem now with that formula, if I enter 1.0 in cell AX, and
either ?
or - in cell BA, I loose my F or B. Is there something else I need
to do to
the formula? Thank you.

"Roger Govier" wrote:

Hi

I think the following does what you want

=IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="? ",
IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
I used row 8 when testing, so substituted for your # in the formula.
--
Regards

Roger Govier


"Hell-fire" wrote in message
...
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.

I beleive I have to modify Column E's formula to do this. If your
confused,
please let me know and I will try to explain better. I thank
everyone
that
may try to help me.










  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 31
Default Help with editing a formula

Thank you Roger,

When I first posted,I forgot that I would still get some data that uses AX
for 1.0. JLatham also suggested a formula to use as well. I will try out
your formula as well. Thank you for your time.


"Roger Govier" wrote:

Hi

You originally asked for the test to be AX=1.1
That's what the formula looks for. Are you saying you need a range of
values for AX?

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

--
Regards

Roger Govier


"Hell-fire" wrote in message
...
Hi again,

One problem now with that formula, if I enter 1.0 in cell AX, and
either ?
or - in cell BA, I loose my F or B. Is there something else I need to
do to
the formula? Thank you.

"Roger Govier" wrote:

Hi

I think the following does what you want

=IF(AND(AX8=1.1,OR(AF8="A",AF8="V")),"1"&IF(AZ8="? ",
IF(BA8="-","F","B"),IF(BA8="?","I","X")),"")
I used row 8 when testing, so substituted for your # in the formula.
--
Regards

Roger Govier


"Hell-fire" wrote in message
...
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.

I beleive I have to modify Column E's formula to do this. If your
confused,
please let me know and I will try to explain better. I thank
everyone
that
may try to help me.









Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula Editing Joe Gieder Excel Worksheet Functions 1 June 26th 06 05:04 PM
editing a cell that has a formula in it BigPig Excel Discussion (Misc queries) 0 February 17th 06 12:55 PM
editing a cell that has a formula in it BigPig Excel Worksheet Functions 0 February 16th 06 11:41 PM
Editing an existing formula Jen Excel Worksheet Functions 1 October 24th 05 07:55 PM
Editing Array Formula [email protected] Excel Worksheet Functions 7 August 28th 05 06:46 AM


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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"