ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Percentage value of amount (https://www.excelbanter.com/excel-worksheet-functions/106751-re-percentage-value-amount.html)

Jay

Percentage value of amount
 
Hi guys:

This should be quick! What I'd like to do is calculate in cell C40 to
resulting value of say 9.5% of the amount in cell C6, which is 15,000. But,
I'd also like not to have a zero value show-up in the target cell if there is
no value in cell C6. The percentage value is listed in cell B40. When this
percentage value in cell B40 changes, the result in cell C40 should reflect
that change. If it becomes a negative value, have it show-up in RED. Is this
possible?

Thanks,

tim m

Percentage value of amount
 
=IF(C6="","",$B$40*C6)
Put the above formula in C40

Format cell C40 like this
Format...cells...number....then choose red color for negative numbers


"Jay" wrote:

Hi guys:

This should be quick! What I'd like to do is calculate in cell C40 to
resulting value of say 9.5% of the amount in cell C6, which is 15,000. But,
I'd also like not to have a zero value show-up in the target cell if there is
no value in cell C6. The percentage value is listed in cell B40. When this
percentage value in cell B40 changes, the result in cell C40 should reflect
that change. If it becomes a negative value, have it show-up in RED. Is this
possible?

Thanks,


Jay

Percentage value of amount
 
Okay, thanks Tim:

Now I have another question for you guys. How can I in one action do
subtraction and or addition of all values vertically in the cells downwards
and avoid a "0" showing in the target cell say cell E40? Example; E8 -
E11-E12-E13-E14-E15-E16-E17, then maybe a "+" E18+E19, then "-" E20-E21-E22?
How would that work?

Thanks,


"tim m" wrote:

=IF(C6="","",$B$40*C6)
Put the above formula in C40

Format cell C40 like this
Format...cells...number....then choose red color for negative numbers


"Jay" wrote:

Hi guys:

This should be quick! What I'd like to do is calculate in cell C40 to
resulting value of say 9.5% of the amount in cell C6, which is 15,000. But,
I'd also like not to have a zero value show-up in the target cell if there is
no value in cell C6. The percentage value is listed in cell B40. When this
percentage value in cell B40 changes, the result in cell C40 should reflect
that change. If it becomes a negative value, have it show-up in RED. Is this
possible?

Thanks,


tim m

Percentage value of amount
 
=IF(E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22=0,"
",E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22)

This formula will work but you could probably plan things out better
depending on how often you are doing these calculations and if the format of
them will be the same. What is your real data like? As in what are you
trying to accomplish?

"Jay" wrote:

Okay, thanks Tim:

Now I have another question for you guys. How can I in one action do
subtraction and or addition of all values vertically in the cells downwards
and avoid a "0" showing in the target cell say cell E40? Example; E8 -
E11-E12-E13-E14-E15-E16-E17, then maybe a "+" E18+E19, then "-" E20-E21-E22?
How would that work?

Thanks,


"tim m" wrote:

=IF(C6="","",$B$40*C6)
Put the above formula in C40

Format cell C40 like this
Format...cells...number....then choose red color for negative numbers


"Jay" wrote:

Hi guys:

This should be quick! What I'd like to do is calculate in cell C40 to
resulting value of say 9.5% of the amount in cell C6, which is 15,000. But,
I'd also like not to have a zero value show-up in the target cell if there is
no value in cell C6. The percentage value is listed in cell B40. When this
percentage value in cell B40 changes, the result in cell C40 should reflect
that change. If it becomes a negative value, have it show-up in RED. Is this
possible?

Thanks,


Jay

Percentage value of amount
 
Tim:

This sort of calculations will be applied vertically across 31 - 34 columns,
so if you know of or have a better idea on how best to address this matter,
I'm ALL ears! I am kinda new to this Excel formular/function business, so, I
do appreciate you're being helpfull and patient with me. You guys are the
guru's in this arena. I'm open to suggestions...

Thanks,


"tim m" wrote:

=IF(E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22=0,"
",E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22)

This formula will work but you could probably plan things out better
depending on how often you are doing these calculations and if the format of
them will be the same. What is your real data like? As in what are you
trying to accomplish?

"Jay" wrote:

Okay, thanks Tim:

Now I have another question for you guys. How can I in one action do
subtraction and or addition of all values vertically in the cells downwards
and avoid a "0" showing in the target cell say cell E40? Example; E8 -
E11-E12-E13-E14-E15-E16-E17, then maybe a "+" E18+E19, then "-" E20-E21-E22?
How would that work?

Thanks,


"tim m" wrote:

=IF(C6="","",$B$40*C6)
Put the above formula in C40

Format cell C40 like this
Format...cells...number....then choose red color for negative numbers


"Jay" wrote:

Hi guys:

This should be quick! What I'd like to do is calculate in cell C40 to
resulting value of say 9.5% of the amount in cell C6, which is 15,000. But,
I'd also like not to have a zero value show-up in the target cell if there is
no value in cell C6. The percentage value is listed in cell B40. When this
percentage value in cell B40 changes, the result in cell C40 should reflect
that change. If it becomes a negative value, have it show-up in RED. Is this
possible?

Thanks,


RagDyeR

Percentage value of amount
 
If you know ahead of time which values are negative, enter them in the cells
with a minus sign:

i.e.
25, 15, -55, 10, -27, -14, ... etc.

And, if you're going down Column E, say from E8 to E39, you can enter this
formula in E40:

=MAX(0,SUM(E8:E39))

--
HTH,

RD

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

"Jay" wrote in message
...
Tim:

This sort of calculations will be applied vertically across 31 - 34

columns,
so if you know of or have a better idea on how best to address this

matter,
I'm ALL ears! I am kinda new to this Excel formular/function business, so,

I
do appreciate you're being helpfull and patient with me. You guys are the
guru's in this arena. I'm open to suggestions...

Thanks,


"tim m" wrote:

=IF(E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22=0,"
",E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22)

This formula will work but you could probably plan things out better
depending on how often you are doing these calculations and if the

format of
them will be the same. What is your real data like? As in what are you
trying to accomplish?

"Jay" wrote:

Okay, thanks Tim:

Now I have another question for you guys. How can I in one action do
subtraction and or addition of all values vertically in the cells

downwards
and avoid a "0" showing in the target cell say cell E40? Example; E8 -
E11-E12-E13-E14-E15-E16-E17, then maybe a "+" E18+E19, then "-"

E20-E21-E22?
How would that work?

Thanks,


"tim m" wrote:

=IF(C6="","",$B$40*C6)
Put the above formula in C40

Format cell C40 like this
Format...cells...number....then choose red color for negative

numbers


"Jay" wrote:

Hi guys:

This should be quick! What I'd like to do is calculate in cell C40

to
resulting value of say 9.5% of the amount in cell C6, which is

15,000. But,
I'd also like not to have a zero value show-up in the target cell

if there is
no value in cell C6. The percentage value is listed in cell B40.

When this
percentage value in cell B40 changes, the result in cell C40

should reflect
that change. If it becomes a negative value, have it show-up in

RED. Is this
possible?

Thanks,



Jay

Percentage value of amount
 
Okay Ragdyer:

Thanks, now, what happens if I want to show a minus/negative value as a
result in this case? Just asking that's all, if you can provide an option
here too, it'll be appreciated!

Looking forward to your input...

Thanks,



"Ragdyer" wrote:

If you know ahead of time which values are negative, enter them in the cells
with a minus sign:

i.e.
25, 15, -55, 10, -27, -14, ... etc.

And, if you're going down Column E, say from E8 to E39, you can enter this
formula in E40:

=MAX(0,SUM(E8:E39))

--
HTH,

RD

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

"Jay" wrote in message
...
Tim:

This sort of calculations will be applied vertically across 31 - 34

columns,
so if you know of or have a better idea on how best to address this

matter,
I'm ALL ears! I am kinda new to this Excel formular/function business, so,

I
do appreciate you're being helpfull and patient with me. You guys are the
guru's in this arena. I'm open to suggestions...

Thanks,


"tim m" wrote:

=IF(E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22=0,"
",E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22)

This formula will work but you could probably plan things out better
depending on how often you are doing these calculations and if the

format of
them will be the same. What is your real data like? As in what are you
trying to accomplish?

"Jay" wrote:

Okay, thanks Tim:

Now I have another question for you guys. How can I in one action do
subtraction and or addition of all values vertically in the cells

downwards
and avoid a "0" showing in the target cell say cell E40? Example; E8 -
E11-E12-E13-E14-E15-E16-E17, then maybe a "+" E18+E19, then "-"

E20-E21-E22?
How would that work?

Thanks,


"tim m" wrote:

=IF(C6="","",$B$40*C6)
Put the above formula in C40

Format cell C40 like this
Format...cells...number....then choose red color for negative

numbers


"Jay" wrote:

Hi guys:

This should be quick! What I'd like to do is calculate in cell C40

to
resulting value of say 9.5% of the amount in cell C6, which is

15,000. But,
I'd also like not to have a zero value show-up in the target cell

if there is
no value in cell C6. The percentage value is listed in cell B40.

When this
percentage value in cell B40 changes, the result in cell C40

should reflect
that change. If it becomes a negative value, have it show-up in

RED. Is this
possible?

Thanks,




RagDyeR

Percentage value of amount
 
Simply remove the Max() function, and *only* use the Sum() function.

=SUM(E8:E39)

--
HTH,

RD

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

"Jay" wrote in message
...
Okay Ragdyer:

Thanks, now, what happens if I want to show a minus/negative value as a
result in this case? Just asking that's all, if you can provide an option
here too, it'll be appreciated!

Looking forward to your input...

Thanks,



"Ragdyer" wrote:

If you know ahead of time which values are negative, enter them in the

cells
with a minus sign:

i.e.
25, 15, -55, 10, -27, -14, ... etc.

And, if you're going down Column E, say from E8 to E39, you can enter

this
formula in E40:

=MAX(0,SUM(E8:E39))

--
HTH,

RD


--------------------------------------------------------------------------

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

!

--------------------------------------------------------------------------

-

"Jay" wrote in message
...
Tim:

This sort of calculations will be applied vertically across 31 - 34

columns,
so if you know of or have a better idea on how best to address this

matter,
I'm ALL ears! I am kinda new to this Excel formular/function business,

so,
I
do appreciate you're being helpfull and patient with me. You guys are

the
guru's in this arena. I'm open to suggestions...

Thanks,


"tim m" wrote:

=IF(E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22=0,"
",E8-E11-E12-E13-E14-E15-E16-E17+E18+E19-E20-E21-E22)

This formula will work but you could probably plan things out better
depending on how often you are doing these calculations and if the

format of
them will be the same. What is your real data like? As in what are

you
trying to accomplish?

"Jay" wrote:

Okay, thanks Tim:

Now I have another question for you guys. How can I in one action

do
subtraction and or addition of all values vertically in the cells

downwards
and avoid a "0" showing in the target cell say cell E40? Example;

E8 -
E11-E12-E13-E14-E15-E16-E17, then maybe a "+" E18+E19, then "-"

E20-E21-E22?
How would that work?

Thanks,


"tim m" wrote:

=IF(C6="","",$B$40*C6)
Put the above formula in C40

Format cell C40 like this
Format...cells...number....then choose red color for negative

numbers


"Jay" wrote:

Hi guys:

This should be quick! What I'd like to do is calculate in cell

C40
to
resulting value of say 9.5% of the amount in cell C6, which is

15,000. But,
I'd also like not to have a zero value show-up in the target

cell
if there is
no value in cell C6. The percentage value is listed in cell

B40.
When this
percentage value in cell B40 changes, the result in cell C40

should reflect
that change. If it becomes a negative value, have it show-up

in
RED. Is this
possible?

Thanks,






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

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