Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default IF formula is greater than X use it, if not use X

I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default IF formula is greater than X use it, if not use X

Hi
Maybe something like this =IF(C16+C17*130%1600,C16+C17*130%,1600)
HTH
John
"dschneider3" wrote in message
...
I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Eva Eva is offline
external usenet poster
 
Posts: 197
Default IF formula is greater than X use it, if not use X

=IF((SUM(C16:C17)*30%)1600,SUM(C16:C17)*30%,1600)
Click yes if helped
--
Greatly appreciated
Eva


"dschneider3" wrote:

I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 269
Default IF formula is greater than X use it, if not use X

You seem to be missing a set of ()
your formula should be
=IF((C16+C17)*.31600, (C16+C17)*.3, 1600)

--
If this helps, please remember to click yes.


"dschneider3" wrote:

I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 89
Default IF formula is greater than X use it, if not use X

Try this:

=IF((C16+C17)*.31600,(C16+C17)*.3,1600)



"dschneider3" wrote:

I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 905
Default IF formula is greater than X use it, if not use X


"dschneider3" wrote:
I'm trying to use the IF function to do the following:
IF(C16+C17)*.31600, (C16+C17)*.3, 1600.


=MIN(1600, (C16+C17)*30%)


----- original message -----

"dschneider3" wrote:
I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default IF formula is greater than X use it, if not use X

OOOP
Correction =IF(C16+C17*1.61600,C16+C17*1.6,1600)
HTH
John
"John" wrote in message
...
Hi
Maybe something like this =IF(C16+C17*130%1600,C16+C17*130%,1600)
HTH
John
"dschneider3" wrote in message
...
I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 834
Default IF formula is greater than X use it, if not use X

Try

=MAX((C16+C17)*.3, 1600)

HTH

Bob


"dschneider3" wrote in message
...
I'm trying to use the IF function to do the following:
IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?



  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default IF formula is greater than X use it, if not use X

It's time for me to quit .
This should be it =IF((C16+C17*1.31600),(C16+C17)*1.3,1600)
John
"John" wrote in message
...
Hi
Maybe something like this =IF(C16+C17*130%1600,C16+C17*130%,1600)
HTH
John
"dschneider3" wrote in message
...
I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?



  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default IF formula is greater than X use it, if not use X

=MIN(1600, (C16+C17)*30%)

Should it be MAX?


"Joe User" wrote:


"dschneider3" wrote:
I'm trying to use the IF function to do the following:
IF(C16+C17)*.31600, (C16+C17)*.3, 1600.


=MIN(1600, (C16+C17)*30%)


----- original message -----

"dschneider3" wrote:
I'm trying to use the IF function to do the following: IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600 then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone help me?



  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 905
Default IF formula is greater than X use it, if not use X

"Teethless mama" wrote:
=MIN(1600, (C16+C17)*30%)


Should it be MAX?


ABS'ly. I mix up left and right, too. I even had written MAX initially,
but changed it to MIN at the last minute, ass-u-me-ing I had made the same
mistake and mis-rereading the OP's posting. D'oh!


----- original message -----

"Teethless mama" wrote in message
...
=MIN(1600, (C16+C17)*30%)


Should it be MAX?


"Joe User" wrote:


"dschneider3" wrote:
I'm trying to use the IF function to do the following:
IF(C16+C17)*.31600, (C16+C17)*.3, 1600.


=MIN(1600, (C16+C17)*30%)


----- original message -----

"dschneider3" wrote:
I'm trying to use the IF function to do the following:
IF(C16+C17)*.31600,
(C16+C17)*.3, 1600.

In English: If the sum of this range times 30% is greater than 1600
then
display the sum of this range times 30%, else display 1600.

I can't get this to work? Can anyone 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
greater les than formula ted Excel Discussion (Misc queries) 3 December 29th 08 04:35 PM
Formula greater than Mel[_2_] Excel Worksheet Functions 2 July 25th 08 09:41 PM
Formula Greater than Less Than Cindy Excel Discussion (Misc queries) 4 January 9th 08 08:11 PM
Greater Than formula ginasucasa Excel Worksheet Functions 5 January 7th 08 08:41 PM
Greater than formula! nekteo Excel Worksheet Functions 2 December 29th 05 05:09 PM


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