Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
davek
 
Posts: n/a
Default Need help with my formula please

This is from a spreadsheet passed over to me

=IF(MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,,$AI7 ,$AL7,$AO7,$AR7,$AU7)-$E$3<0,0,MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,
$AB7, , $AI7, $AL7, $AO7,$AR7,$AU7)-$E$3)


If I wanted to take the value that the above formula comes up with and
reduce it...say 25 percent or 10 percent...what would I add to the formula to
accomplish this? I'm a bit of a novice and this formula is beyond what I've
worked with in the past. Thank you.
  #2   Report Post  
N Harkawat
 
Posts: n/a
Default

to reduce by 25% just multiply it by 0.75 as follows:-
=IF(MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,,$AI7 ,$AL7,$AO7,$AR7,$AU7)-$E$3<0,0,MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,
$AB7, , $AI7, $AL7, $AO7,$AR7,$AU7)-$E$3)*.75



"davek" wrote in message
...
This is from a spreadsheet passed over to me

=IF(MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,,$AI7 ,$AL7,$AO7,$AR7,$AU7)-$E$3<0,0,MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,
$AB7, , $AI7, $AL7, $AO7,$AR7,$AU7)-$E$3)


If I wanted to take the value that the above formula comes up with and
reduce it...say 25 percent or 10 percent...what would I add to the formula
to
accomplish this? I'm a bit of a novice and this formula is beyond what
I've
worked with in the past. Thank you.



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

Improved as well as the amend you asked for

=MAX((MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,$AI 7,$AL7,$AO7,$AR7,$AU7)-$E$
3)*75%,0)

--
HTH

Bob Phillips

"davek" wrote in message
...
This is from a spreadsheet passed over to me


=IF(MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,,$AI7 ,$AL7,$AO7,$AR7,$AU7)-$E$3
<0,0,MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,
$AB7, , $AI7, $AL7, $AO7,$AR7,$AU7)-$E$3)


If I wanted to take the value that the above formula comes up with and
reduce it...say 25 percent or 10 percent...what would I add to the formula

to
accomplish this? I'm a bit of a novice and this formula is beyond what

I've
worked with in the past. Thank you.



  #4   Report Post  
davek
 
Posts: n/a
Default

Thank you seems to be working. I appreciate the quick response.

-Dave

"Bob Phillips" wrote:

Improved as well as the amend you asked for

=MAX((MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,$AI 7,$AL7,$AO7,$AR7,$AU7)-$E$
3)*75%,0)

--
HTH

Bob Phillips

"davek" wrote in message
...
This is from a spreadsheet passed over to me


=IF(MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,,$AI7 ,$AL7,$AO7,$AR7,$AU7)-$E$3
<0,0,MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,
$AB7, , $AI7, $AL7, $AO7,$AR7,$AU7)-$E$3)


If I wanted to take the value that the above formula comes up with and
reduce it...say 25 percent or 10 percent...what would I add to the formula

to
accomplish this? I'm a bit of a novice and this formula is beyond what

I've
worked with in the past. Thank you.




  #5   Report Post  
malik641
 
Posts: n/a
Default


I'm pretty sure this is what you're asking for:
For 25% reduction

=IF((MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,,$AI 7,$AL7,$AO7,$AR7,$AU7)-$E$3)*0.75<0,0,(MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y 7,
$AB7, , $AI7, $AL7, $AO7,$AR7,$AU7)-$E$3)*0.75)

For 10% reduction

=IF((MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,,$AI 7,$AL7,$AO7,$AR7,$AU7)-$E$3)*0.90<0,0,(MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y 7,
$AB7, , $AI7, $AL7, $AO7,$AR7,$AU7)-$E$3)*0.90)

davek Wrote:
This is from a spreadsheet passed over to me

=IF(MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,$AB7,,$AI7 ,$AL7,$AO7,$AR7,$AU7)-$E$3<0,0,MAX($D7,$G7,$J7,$M7,$P7,$S7,$V7,$Y7,
$AB7, , $AI7, $AL7, $AO7,$AR7,$AU7)-$E$3)


If I wanted to take the value that the above formula comes up with and
reduce it...say 25 percent or 10 percent...what would I add to the
formula to
accomplish this? I'm a bit of a novice and this formula is beyond what
I've
worked with in the past. Thank you.



--
malik641
------------------------------------------------------------------------
malik641's Profile: http://www.excelforum.com/member.php...o&userid=24190
View this thread: http://www.excelforum.com/showthread...hreadid=384994

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
referencing named formula using INDIRECT function [email protected] Excel Worksheet Functions 19 May 11th 05 09:48 AM
Simplify formula Luke Excel Worksheet Functions 37 May 6th 05 07:21 AM
put formula results into a different cell if it is empty PutFormula Excel Worksheet Functions 2 February 11th 05 03:31 AM
how do i write a formula and keep in in formula form, so it DOESN. norcalchick2207 Excel Discussion (Misc queries) 2 February 4th 05 08:38 PM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


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

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

About Us

"It's about Microsoft Excel"