Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
brit64
 
Posts: n/a
Default formula returns (correctly) a negative value

CELL AE198 displays 15% of cell AE193. My formula in cell AE198 is:
=SUM(AE193*0.15)
Whenever the value in cell AE193 is negative, i.e. less than 0.00, this
formula currently correctly returns a negative value which I do not want to
show, rather whenever this formula (and cell AE193) are negative values, I
want the formula in cell AE198 to display 0.00. Whenever cell AE193 and the
formula show or return a positive value, then I want the formula to continue
correctly displaying whatever that positive value may be. How must I modify
my formula in order to achieve this desired objective?

  #2   Report Post  
Anne Troy
 
Posts: n/a
Default

=if(a3193<=0,0,AE193*0.15)
(You don't need that SUM bit...)
************
Anne Troy
www.OfficeArticles.com


"brit64" wrote in message
...
CELL AE198 displays 15% of cell AE193. My formula in cell AE198 is:
=SUM(AE193*0.15)
Whenever the value in cell AE193 is negative, i.e. less than 0.00, this
formula currently correctly returns a negative value which I do not want
to
show, rather whenever this formula (and cell AE193) are negative values,
I
want the formula in cell AE198 to display 0.00. Whenever cell AE193 and
the
formula show or return a positive value, then I want the formula to
continue
correctly displaying whatever that positive value may be. How must I
modify
my formula in order to achieve this desired objective?



  #3   Report Post  
brit64
 
Posts: n/a
Default

Anne thank you very much, am now close to resolving my issue for this
spreadsheet. While your solution did indeed correct the result in the cell
198, it posed yet another unresolved dilemma in a different cell. Am studying
that issue right now and will no doubt pose a second question here when I can
formulate it correctly.
peter
tucson, arizona


"Anne Troy" wrote:

=if(a3193<=0,0,AE193*0.15)
(You don't need that SUM bit...)
************
Anne Troy
www.OfficeArticles.com


"brit64" wrote in message
...
CELL AE198 displays 15% of cell AE193. My formula in cell AE198 is:
=SUM(AE193*0.15)
Whenever the value in cell AE193 is negative, i.e. less than 0.00, this
formula currently correctly returns a negative value which I do not want
to
show, rather whenever this formula (and cell AE193) are negative values,
I
want the formula in cell AE198 to display 0.00. Whenever cell AE193 and
the
formula show or return a positive value, then I want the formula to
continue
correctly displaying whatever that positive value may be. How must I
modify
my formula in order to achieve this desired objective?




  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default

=MAX(0,AE193*0.15)

--
HTH

Bob Phillips

"brit64" wrote in message
...
Anne thank you very much, am now close to resolving my issue for this
spreadsheet. While your solution did indeed correct the result in the cell
198, it posed yet another unresolved dilemma in a different cell. Am

studying
that issue right now and will no doubt pose a second question here when I

can
formulate it correctly.
peter
tucson, arizona


"Anne Troy" wrote:

=if(a3193<=0,0,AE193*0.15)
(You don't need that SUM bit...)
************
Anne Troy
www.OfficeArticles.com


"brit64" wrote in message
...
CELL AE198 displays 15% of cell AE193. My formula in cell AE198 is:
=SUM(AE193*0.15)
Whenever the value in cell AE193 is negative, i.e. less than 0.00,

this
formula currently correctly returns a negative value which I do not

want
to
show, rather whenever this formula (and cell AE193) are negative

values,
I
want the formula in cell AE198 to display 0.00. Whenever cell AE193

and
the
formula show or return a positive value, then I want the formula to
continue
correctly displaying whatever that positive value may be. How must I
modify
my formula in order to achieve this desired objective?






  #5   Report Post  
brit64
 
Posts: n/a
Default

many thanks Anne, this answer takes me on to:
Problem #2 in cell AF201 (repeated in cells AG191 & AG193)
Current formula in cell AF201:
=SUM(AE185*AD201)
However, I want the result displayed in this cell AF201 to be 0.00 IF cell
AE187 is a negative number. On the other hand if cell AE187 is a positive
number, then the result in cell AF201 should be displayed normally (i.e.
ignoring the command to display a result of 0.00 when cell AE187 is a
negative number).

in other words I believe I am looking for a command prefix for 'UNLESS'.


"Anne Troy" wrote:

=if(a3193<=0,0,AE193*0.15)
(You don't need that SUM bit...)
************
Anne Troy
www.OfficeArticles.com


"brit64" wrote in message
...
CELL AE198 displays 15% of cell AE193. My formula in cell AE198 is:
=SUM(AE193*0.15)
Whenever the value in cell AE193 is negative, i.e. less than 0.00, this
formula currently correctly returns a negative value which I do not want
to
show, rather whenever this formula (and cell AE193) are negative values,
I
want the formula in cell AE198 to display 0.00. Whenever cell AE193 and
the
formula show or return a positive value, then I want the formula to
continue
correctly displaying whatever that positive value may be. How must I
modify
my formula in order to achieve this desired objective?






  #6   Report Post  
Bob Phillips
 
Posts: n/a
Default

=IF(AE187<0,0,MAX(0,AE185*0.15))

--
HTH

Bob Phillips

"brit64" wrote in message
...
many thanks Anne, this answer takes me on to:
Problem #2 in cell AF201 (repeated in cells AG191 & AG193)
Current formula in cell AF201:
=SUM(AE185*AD201)
However, I want the result displayed in this cell AF201 to be 0.00 IF cell
AE187 is a negative number. On the other hand if cell AE187 is a positive
number, then the result in cell AF201 should be displayed normally (i.e.
ignoring the command to display a result of 0.00 when cell AE187 is a
negative number).

in other words I believe I am looking for a command prefix for 'UNLESS'.


"Anne Troy" wrote:

=if(a3193<=0,0,AE193*0.15)
(You don't need that SUM bit...)
************
Anne Troy
www.OfficeArticles.com


"brit64" wrote in message
...
CELL AE198 displays 15% of cell AE193. My formula in cell AE198 is:
=SUM(AE193*0.15)
Whenever the value in cell AE193 is negative, i.e. less than 0.00,

this
formula currently correctly returns a negative value which I do not

want
to
show, rather whenever this formula (and cell AE193) are negative

values,
I
want the formula in cell AE198 to display 0.00. Whenever cell AE193

and
the
formula show or return a positive value, then I want the formula to
continue
correctly displaying whatever that positive value may be. How must I
modify
my formula in order to achieve this desired objective?






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 that returns the sheetname TimT Excel Discussion (Misc queries) 2 September 8th 05 04:33 PM
FORMULA TO ADD POSITIVE AND NEGATIVE NUMBERS, REGARDLESS OF SIGN JON Excel Discussion (Misc queries) 3 July 18th 05 06:35 PM
How to type correctly formula in calculated field in a pivot? louloutte48 Excel Worksheet Functions 2 June 28th 05 01:46 PM
Creating a check mark box MarthaSue Setting up and Configuration of Excel 18 April 28th 05 12:31 AM
When I copy down into the next cell the formula changes correctly. Jason30 Excel Discussion (Misc queries) 1 January 12th 05 11:55 PM


All times are GMT +1. The time now is 04:01 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"