ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How to read the value of a cell (https://www.excelbanter.com/excel-worksheet-functions/156864-how-read-value-cell.html)

Hell-fire[_3_]

How to read the value of a cell
 
Hi,

Is there a way to read the value of a cell that has a formula in it? I have
one cell who's formula reads the value of other cells, but some of those
other cells would have formula's in them. Is this possible? Thank you

Max

How to read the value of a cell
 
Yes, of course. Formula cells can point to & read the returns of yet other
formula cells. Eg: you may have in C1: =SUM(A1:B1) - which returns the sum of
the values entered in A1 and B1. And you could then have in D1:
=IF(C1=0,"",C1) - which checks whether the formula in C1 returns a zero, and
if so, D1 will in turn return a neat "blank", ie: "", otherwise D1 will
simply return the value computed in C1.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi,

Is there a way to read the value of a cell that has a formula in it? I have
one cell who's formula reads the value of other cells, but some of those
other cells would have formula's in them. Is this possible? Thank you


Hell-fire[_3_]

How to read the value of a cell
 
Hi Max,

Thank you for responding to my post. The problem is, when I use the formula
in the one cell, the other cell isn't reading properly. If I take out the
formula and just place a value in it, it works.

The main cell formula is this:
=IF(AX446=1,IF(OR(AF446="A",AF446="V"),IF(AZ446=" —‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),IF(AX4 46=1.1,IF(OR(AF446="A",AF446="V"),"1"&IF(AZ446="— ‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),""))

The other cell I want read has this formula:
=IF(AX446=1.1,"-",IF(AND(AX446=1,AF446="A"),"—‹",IF(AND(AX446=1,A F446)="V","-"," ")))

If I have the above formula in the cell, the main formula doesn't seem to
read the "A" or "V" in a different cell. I hope this makes sense. Thank you


"Max" wrote:

Yes, of course. Formula cells can point to & read the returns of yet other
formula cells. Eg: you may have in C1: =SUM(A1:B1) - which returns the sum of
the values entered in A1 and B1. And you could then have in D1:
=IF(C1=0,"",C1) - which checks whether the formula in C1 returns a zero, and
if so, D1 will in turn return a neat "blank", ie: "", otherwise D1 will
simply return the value computed in C1.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi,

Is there a way to read the value of a cell that has a formula in it? I have
one cell who's formula reads the value of other cells, but some of those
other cells would have formula's in them. Is this possible? Thank you


Max

How to read the value of a cell
 
Perhaps it's just a syntax typo in this formula of yours tripping things up:
=IF(AX446=1.1,"-",IF(AND(AX446=1,AF446="A"),"—‹",IF(AND(AX446=1,A F446)="V","-"," ")))


Try correcting it to read as:
=IF(AX446=1.1,"-",IF(AND(AX446=1,AF446="A"),"—‹",IF(AND(AX446=1,A F446="V"),"-"," ")))

Hopefully that will clear it up for you.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi Max,

Thank you for responding to my post. The problem is, when I use the formula
in the one cell, the other cell isn't reading properly. If I take out the
formula and just place a value in it, it works.

The main cell formula is this:
=IF(AX446=1,IF(OR(AF446="A",AF446="V"),IF(AZ446=" —‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),IF(AX4 46=1.1,IF(OR(AF446="A",AF446="V"),"1"&IF(AZ446="— ‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),""))

The other cell I want read has this formula:
=IF(AX446=1.1,"-",IF(AND(AX446=1,AF446="A"),"—‹",IF(AND(AX446=1,A F446)="V","-"," ")))

If I have the above formula in the cell, the main formula doesn't seem to
read the "A" or "V" in a different cell. I hope this makes sense. Thank you



Hell-fire[_3_]

How to read the value of a cell
 
Hi Max,

Thanks for the response. I changed it, but if I type in 1.0, there is no
problem for the A and V. If I type in 1.1 though, it still not reading A.
If Ican't get it right, then the user will just have to fill in that cell
manually. Thanks again.


"Max" wrote:

Perhaps it's just a syntax typo in this formula of yours tripping things up:
=IF(AX446=1.1,"-",IF(AND(AX446=1,AF446="A"),"—‹",IF(AND(AX446=1,A F446)="V","-"," ")))


Try correcting it to read as:
=IF(AX446=1.1,"-",IF(AND(AX446=1,AF446="A"),"—‹",IF(AND(AX446=1,A F446="V"),"-"," ")))

Hopefully that will clear it up for you.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi Max,

Thank you for responding to my post. The problem is, when I use the formula
in the one cell, the other cell isn't reading properly. If I take out the
formula and just place a value in it, it works.

The main cell formula is this:
=IF(AX446=1,IF(OR(AF446="A",AF446="V"),IF(AZ446=" —‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),IF(AX4 46=1.1,IF(OR(AF446="A",AF446="V"),"1"&IF(AZ446="— ‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),""))

The other cell I want read has this formula:
=IF(AX446=1.1,"-",IF(AND(AX446=1,AF446="A"),"—‹",IF(AND(AX446=1,A F446)="V","-"," ")))

If I have the above formula in the cell, the main formula doesn't seem to
read the "A" or "V" in a different cell. I hope this makes sense. Thank you



Max

How to read the value of a cell
 
It seems ok to me.

Maybe just take a look at this test file:
http://cjoint.com/?jelJ5hCKXj
hellfire_wks.xls

Post back on what's the problem you have with the "main cell"'s formula
returns (easier to see things with the test file)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi Max,

Thanks for the response. I changed it, but if I type in 1.0, there is no
problem for the A and V. If I type in 1.1 though, it still not reading A.
If I can't get it right, then the user will just have to fill in that cell
manually. Thanks again.



Hell-fire[_3_]

How to read the value of a cell
 
Hi Max,

Thank you again for your help. The problem is, when I have "1.1" for cell
AX, that should put a "-" in cell BA and I type "A" in cell AF, the output
should be 1B. Now if I type "V" instead of the "A", the output should be 1F.
I get the "-", but seems cell E which has:

=IF(AX446=1,IF(OR(AF446="A",AF446="V"),IF(AZ446=" —‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),
IF(AX446=1.1,IF(OR(AF446="A",AF446="V"),"1"&IF(AZ4 46="—‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),""))

doesn't seem to read the "A" anymore.

No matter which I type, "A" or "V", I still get 1F. I should only get 1F
for having "V" and 1B for having "A".

It works with no problem when I type "1.0" in cell AX. The output I get for
"A" is B and output for "V" is F.

I hope I'm not making this confusing. Thank you.


"Max" wrote:

It seems ok to me.

Maybe just take a look at this test file:
http://cjoint.com/?jelJ5hCKXj
hellfire_wks.xls

Post back on what's the problem you have with the "main cell"'s formula
returns (easier to see things with the test file)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi Max,

Thanks for the response. I changed it, but if I type in 1.0, there is no
problem for the A and V. If I type in 1.1 though, it still not reading A.
If I can't get it right, then the user will just have to fill in that cell
manually. Thanks again.



Hell-fire[_3_]

How to read the value of a cell
 
Hi again Max,

I don't know if this will help, but back in July 2nd, I posted 2 questions
that gave me the one formula. It has everything else that is interacting
with the different cells. The subject titles are "Help with editing a
formula" and "Additional help to edit a formula"

Thank you

"Max" wrote:

It seems ok to me.

Maybe just take a look at this test file:
http://cjoint.com/?jelJ5hCKXj
hellfire_wks.xls

Post back on what's the problem you have with the "main cell"'s formula
returns (easier to see things with the test file)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi Max,

Thanks for the response. I changed it, but if I type in 1.0, there is no
problem for the A and V. If I type in 1.1 though, it still not reading A.
If I can't get it right, then the user will just have to fill in that cell
manually. Thanks again.



Hell-fire[_3_]

How to read the value of a cell
 
Hi for the 3rd time today,

Unfortunately, not being any good at formula's for Excel, I think I see
where the problem is, but not sure how to solve it.

The problem seems to be in this formula:

=IF(AX445=1,IF(OR(AF445="A",AF445="V"),IF(AZ445=" —‹",IF(BA445="-","F","ï¼¢"),IF(BA445="—‹","I","X")),""),IF(AX4 45=1.1,IF(OR(AF445="A",AF445="V"),"1"&IF(AZ445="— ‹",IF(BA445="-","F","ï¼¢"),IF(BA445="-","I","X")),""),""))

When AX = 1.1, there should be a "-" in BA. Cell BA should then be ignored
and the formula should then lood at AF for either "A" or "V". If it sees "A"
then there should be a 1Bxxxxxxxxxxxx, if there is a "V" then there should be
1Fxxxxxxxxxx. From what I'm seeing though, its reading the "-" and inputting
1F, ignoring cell AF completely.

If I leave BA blank or input anything else but the "-", I get my 1B. I
guess I need to have help re-adjusting the formula. Thank you for your help
though on the other part.

"Max" wrote:

It seems ok to me.

Maybe just take a look at this test file:
http://cjoint.com/?jelJ5hCKXj
hellfire_wks.xls

Post back on what's the problem you have with the "main cell"'s formula
returns (easier to see things with the test file)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi Max,

Thanks for the response. I changed it, but if I type in 1.0, there is no
problem for the A and V. If I type in 1.1 though, it still not reading A.
If I can't get it right, then the user will just have to fill in that cell
manually. Thanks again.



Max

How to read the value of a cell
 
.. I guess I need to have help re-adjusting the formula.

Try this revised formula (2nd part was re-fashioned):
=IF(AX446=1,IF(OR(AF446="A",AF446="V"),IF(AZ446=" —‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),
IF(AX446=1.1,IF(AND(AF446="A",AZ446="—‹",BA446="-"),"1ï¼¢",IF(AND(AF446="V",AZ446="—‹",BA446="-"),"1F",
IF(AND(AF446="A",AZ446="—‹",BA446="—‹"),"1I",IF( AND(AF446="V",AZ446="—‹",BA446="—‹"),"1X","")))) ))
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi for the 3rd time today,

Unfortunately, not being any good at formula's for Excel, I think I see
where the problem is, but not sure how to solve it.

The problem seems to be in this formula:

=IF(AX445=1,IF(OR(AF445="A",AF445="V"),IF(AZ445=" —‹",IF(BA445="-","F","ï¼¢"),IF(BA445="—‹","I","X")),""),IF(AX4 45=1.1,IF(OR(AF445="A",AF445="V"),"1"&IF(AZ445="— ‹",IF(BA445="-","F","ï¼¢"),IF(BA445="-","I","X")),""),""))

When AX = 1.1, there should be a "-" in BA. Cell BA should then be ignored
and the formula should then lood at AF for either "A" or "V". If it sees "A"
then there should be a 1Bxxxxxxxxxxxx, if there is a "V" then there should be
1Fxxxxxxxxxx. From what I'm seeing though, its reading the "-" and inputting
1F, ignoring cell AF completely.

If I leave BA blank or input anything else but the "-", I get my 1B. I
guess I need to have help re-adjusting the formula. Thank you for your help
though on the other part.



Hell-fire[_3_]

How to read the value of a cell
 
Hi Max,

Thanks again for your help. I haven't inputted the new formula, but I
noticed that I have been an idiot. Well its not the first time unfortunately.

I was so focused on AZ and BA that I didn't realize that what makes the
difference for the output of B or F is cell AF which we enter either "A" or
"V".

I don't know why the original creator of this sheet didn't base this off of
cell AF. Would this be able to simplify that long formula? Thank you.



"Max" wrote:

.. I guess I need to have help re-adjusting the formula.


Try this revised formula (2nd part was re-fashioned):
=IF(AX446=1,IF(OR(AF446="A",AF446="V"),IF(AZ446=" —‹",IF(BA446="-","F","ï¼¢"),IF(BA446="—‹","I","X")),""),
IF(AX446=1.1,IF(AND(AF446="A",AZ446="—‹",BA446="-"),"1ï¼¢",IF(AND(AF446="V",AZ446="—‹",BA446="-"),"1F",
IF(AND(AF446="A",AZ446="—‹",BA446="—‹"),"1I",IF( AND(AF446="V",AZ446="—‹",BA446="—‹"),"1X","")))) ))
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote:
Hi for the 3rd time today,

Unfortunately, not being any good at formula's for Excel, I think I see
where the problem is, but not sure how to solve it.

The problem seems to be in this formula:

=IF(AX445=1,IF(OR(AF445="A",AF445="V"),IF(AZ445=" —‹",IF(BA445="-","F","ï¼¢"),IF(BA445="—‹","I","X")),""),IF(AX4 45=1.1,IF(OR(AF445="A",AF445="V"),"1"&IF(AZ445="— ‹",IF(BA445="-","F","ï¼¢"),IF(BA445="-","I","X")),""),""))

When AX = 1.1, there should be a "-" in BA. Cell BA should then be ignored
and the formula should then lood at AF for either "A" or "V". If it sees "A"
then there should be a 1Bxxxxxxxxxxxx, if there is a "V" then there should be
1Fxxxxxxxxxx. From what I'm seeing though, its reading the "-" and inputting
1F, ignoring cell AF completely.

If I leave BA blank or input anything else but the "-", I get my 1B. I
guess I need to have help re-adjusting the formula. Thank you for your help
though on the other part.



Max

How to read the value of a cell
 
well, think I need a break, too <g. got a throbbing migraine looking at
that convoluted IF earlier, with all the special characters to boot.

I haven't inputted the new formula ..


why not just plug it in and test it out?

(don't input, just copy it direct from the posting and paste into the
formula bar, then clean up the line breaks)

.... if it works fine and you want to shorten it,
pl take this up in a fresh, new posting ..
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote in message
...
Hi Max,

Thanks again for your help. I haven't inputted the new formula, but I
noticed that I have been an idiot. Well its not the first time
unfortunately.

I was so focused on AZ and BA that I didn't realize that what makes the
difference for the output of B or F is cell AF which we enter either "A"
or
"V".

I don't know why the original creator of this sheet didn't base this off
of
cell AF. Would this be able to simplify that long formula? Thank you.




Hell-fire[_3_]

How to read the value of a cell
 
Thanks Max. Take a nice long break and enjoy.

"Max" wrote:

well, think I need a break, too <g. got a throbbing migraine looking at
that convoluted IF earlier, with all the special characters to boot.

I haven't inputted the new formula ..


why not just plug it in and test it out?

(don't input, just copy it direct from the posting and paste into the
formula bar, then clean up the line breaks)

.... if it works fine and you want to shorten it,
pl take this up in a fresh, new posting ..
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote in message
...
Hi Max,

Thanks again for your help. I haven't inputted the new formula, but I
noticed that I have been an idiot. Well its not the first time
unfortunately.

I was so focused on AZ and BA that I didn't realize that what makes the
difference for the output of B or F is cell AF which we enter either "A"
or
"V".

I don't know why the original creator of this sheet didn't base this off
of
cell AF. Would this be able to simplify that long formula? Thank you.





Max

How to read the value of a cell
 
welcome. as a closure, pl post back here on the results you get when you
plug in that last revised formula
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote in message
...
Thanks Max. Take a nice long break and enjoy.




Hell-fire[_3_]

How to read the value of a cell
 
Hi Max,

I plugged in the formula, it works and gives me the result. But when I
apply it to the other cells with no data, I get "FALSExxxxXxxxxxxxxx". If I
put 1 or 1.1 in cell AX, then the FALSE goes away.

I know this is becoming a pain.

On the sheet, the rows with no data in Column C is like this:

xxxxX431_xxxx_XXXxxxxx this goes up progressively.

To me having FALSExxxxX431_xxxx_XXXxxxxx showing up wouldn't bother me, but
to the others that also use this sheet, it would bother them.

I'm trying to figure out how to get it not to show the FALSE. Just wish I
knew more on how to make these formula's. I don't know how you guys do it,
but I sure envy your ability. Thanks again.


"Max" wrote:

welcome. as a closure, pl post back here on the results you get when you
plug in that last revised formula
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote in message
...
Thanks Max. Take a nice long break and enjoy.





Max

How to read the value of a cell
 
Think this should do it:

=IF(OR(AF446="",AX446=""),"",IF(AX446=1,IF(OR(AF44 6="A",AF446="V"),IF(AZ446="?",IF(BA446="-","F","B"),IF(BA446="?","I","X")),""),IF(AX446=1.1 ,IF(AND(AF446="A",AZ446="?",BA446="-"),"1B",IF(AND(AF446="V",AZ446="?",BA446="-"),"1F",IF(AND(AF446="A",AZ446="?",BA446="?"),"1I" ,IF(AND(AF446="V",AZ446="?",BA446="?"),"1X","")))) )))

I bolted on a front IF check to the earlier:
=IF(OR(AF446="",AX446=""),"", ...
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote in message
...
Hi Max,

I plugged in the formula, it works and gives me the result. But when I
apply it to the other cells with no data, I get "FALSExxxxXxxxxxxxxx". If
I
put 1 or 1.1 in cell AX, then the FALSE goes away.

I know this is becoming a pain.

On the sheet, the rows with no data in Column C is like this:

xxxxX431_xxxx_XXXxxxxx this goes up progressively.

To me having FALSExxxxX431_xxxx_XXXxxxxx showing up wouldn't bother me,
but
to the others that also use this sheet, it would bother them.

I'm trying to figure out how to get it not to show the FALSE. Just wish I
knew more on how to make these formula's. I don't know how you guys do
it,
but I sure envy your ability. Thanks again.




Hell-fire[_3_]

How to read the value of a cell
 
Well Max,

That did it. It works like a charm now. Wish I could buy you a drink for
all your help. Didn't notice until now that your in Singapore, was wondering
before why you were able to answer my question so quickly. For me I'm in
Japan and for the reason they use the degree character is, it represents a
circle in Japanese font.

Anyway, thank you very much, I know this is probably been a bigger headache
for you than for me. Especially with all those IF statements. Please take
care and enjoy


"Max" wrote:

Think this should do it:

=IF(OR(AF446="",AX446=""),"",IF(AX446=1,IF(OR(AF44 6="A",AF446="V"),IF(AZ446="?",IF(BA446="-","F","B"),IF(BA446="?","I","X")),""),IF(AX446=1.1 ,IF(AND(AF446="A",AZ446="?",BA446="-"),"1B",IF(AND(AF446="V",AZ446="?",BA446="-"),"1F",IF(AND(AF446="A",AZ446="?",BA446="?"),"1I" ,IF(AND(AF446="V",AZ446="?",BA446="?"),"1X","")))) )))

I bolted on a front IF check to the earlier:
=IF(OR(AF446="",AX446=""),"", ...
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote in message
...
Hi Max,

I plugged in the formula, it works and gives me the result. But when I
apply it to the other cells with no data, I get "FALSExxxxXxxxxxxxxx". If
I
put 1 or 1.1 in cell AX, then the FALSE goes away.

I know this is becoming a pain.

On the sheet, the rows with no data in Column C is like this:

xxxxX431_xxxx_XXXxxxxx this goes up progressively.

To me having FALSExxxxX431_xxxx_XXXxxxxx showing up wouldn't bother me,
but
to the others that also use this sheet, it would bother them.

I'm trying to figure out how to get it not to show the FALSE. Just wish I
knew more on how to make these formula's. I don't know how you guys do
it,
but I sure envy your ability. Thanks again.





Max

How to read the value of a cell
 
Welcome, glad to hear that.
Thanks for clarifying on the characters bit.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Hell-fire" wrote in message
...
Well Max,

That did it. It works like a charm now. Wish I could buy you a drink for
all your help. Didn't notice until now that your in Singapore, was
wondering
before why you were able to answer my question so quickly. For me I'm in
Japan and for the reason they use the degree character is, it represents a
circle in Japanese font.

Anyway, thank you very much, I know this is probably been a bigger
headache
for you than for me. Especially with all those IF statements. Please
take
care and enjoy





All times are GMT +1. The time now is 11:00 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com