#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 49
Default Formula problem

Here's the set up:
A1 has 300,000
A2 has 1,000,000
A3 has 1,200,000

I want an if statement that if one of the following is above 1,000,000 then
to multiply by 33% + 400,000. I want a statement that I want anything over
1,000,000 be multiplied by 33% + 400,000. Help!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Formula problem

You didn't say what to do if the value is <=1000000.

Maybe this:

=IF(A11000000,(A1-1000000)*0.33+400000,A1)

Copy down as needed.

Biff

"Janet" wrote in message
...
Here's the set up:
A1 has 300,000
A2 has 1,000,000
A3 has 1,200,000

I want an if statement that if one of the following is above 1,000,000
then
to multiply by 33% + 400,000. I want a statement that I want anything over
1,000,000 be multiplied by 33% + 400,000. Help!



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 49
Default Formula problem

We don't care if it is less than 1,000,000 though. We are more concerned if
it higher.

"T. Valko" wrote:

You didn't say what to do if the value is <=1000000.

Maybe this:

=IF(A11000000,(A1-1000000)*0.33+400000,A1)

Copy down as needed.

Biff

"Janet" wrote in message
...
Here's the set up:
A1 has 300,000
A2 has 1,000,000
A3 has 1,200,000

I want an if statement that if one of the following is above 1,000,000
then
to multiply by 33% + 400,000. I want a statement that I want anything over
1,000,000 be multiplied by 33% + 400,000. Help!




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Formula problem

Ok, this will leave the cell blank if the number is <=1000000:

=IF(A11000000,(A1-1000000)*0.33+400000,"")

Biff

"Janet" wrote in message
...
We don't care if it is less than 1,000,000 though. We are more concerned
if
it higher.

"T. Valko" wrote:

You didn't say what to do if the value is <=1000000.

Maybe this:

=IF(A11000000,(A1-1000000)*0.33+400000,A1)

Copy down as needed.

Biff

"Janet" wrote in message
...
Here's the set up:
A1 has 300,000
A2 has 1,000,000
A3 has 1,200,000

I want an if statement that if one of the following is above 1,000,000
then
to multiply by 33% + 400,000. I want a statement that I want anything
over
1,000,000 be multiplied by 33% + 400,000. Help!






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Formula problem

Hmmm...

I just noticed AKphidelt's relpy.

My interpretation is just the amount over 1000000, if any. Their
interpretation is the total amount if 1000000.

So, either way we got ya covered!

Biff

"T. Valko" wrote in message
...
Ok, this will leave the cell blank if the number is <=1000000:

=IF(A11000000,(A1-1000000)*0.33+400000,"")

Biff

"Janet" wrote in message
...
We don't care if it is less than 1,000,000 though. We are more concerned
if
it higher.

"T. Valko" wrote:

You didn't say what to do if the value is <=1000000.

Maybe this:

=IF(A11000000,(A1-1000000)*0.33+400000,A1)

Copy down as needed.

Biff

"Janet" wrote in message
...
Here's the set up:
A1 has 300,000
A2 has 1,000,000
A3 has 1,200,000

I want an if statement that if one of the following is above 1,000,000
then
to multiply by 33% + 400,000. I want a statement that I want anything
over
1,000,000 be multiplied by 33% + 400,000. Help!









  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 461
Default Formula problem

lol, im sure something we did is right... my interpretation came from her
last line...

" I want a statement that I want anything over 1,000,000 be multiplied by
33% + 400,000. Help! "

But who knows, i've misinterpreted a lot of things in my life, lol.


"T. Valko" wrote:

Hmmm...

I just noticed AKphidelt's relpy.

My interpretation is just the amount over 1000000, if any. Their
interpretation is the total amount if 1000000.

So, either way we got ya covered!

Biff

"T. Valko" wrote in message
...
Ok, this will leave the cell blank if the number is <=1000000:

=IF(A11000000,(A1-1000000)*0.33+400000,"")

Biff

"Janet" wrote in message
...
We don't care if it is less than 1,000,000 though. We are more concerned
if
it higher.

"T. Valko" wrote:

You didn't say what to do if the value is <=1000000.

Maybe this:

=IF(A11000000,(A1-1000000)*0.33+400000,A1)

Copy down as needed.

Biff

"Janet" wrote in message
...
Here's the set up:
A1 has 300,000
A2 has 1,000,000
A3 has 1,200,000

I want an if statement that if one of the following is above 1,000,000
then
to multiply by 33% + 400,000. I want a statement that I want anything
over
1,000,000 be multiplied by 33% + 400,000. Help!








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 461
Default Formula problem

=IF(A11000000,A1*.33+400000,"Not over Million")


"Janet" wrote:

Here's the set up:
A1 has 300,000
A2 has 1,000,000
A3 has 1,200,000

I want an if statement that if one of the following is above 1,000,000 then
to multiply by 33% + 400,000. I want a statement that I want anything over
1,000,000 be multiplied by 33% + 400,000. Help!

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 49
Default Formula problem

You two are funny! Thanks for the input!

"AKphidelt" wrote:

=IF(A11000000,A1*.33+400000,"Not over Million")


"Janet" wrote:

Here's the set up:
A1 has 300,000
A2 has 1,000,000
A3 has 1,200,000

I want an if statement that if one of the following is above 1,000,000 then
to multiply by 33% + 400,000. I want a statement that I want anything over
1,000,000 be multiplied by 33% + 400,000. Help!

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 problem Nancy E Excel Discussion (Misc queries) 4 May 11th 07 06:47 PM
formula problem [email protected] uk Excel Worksheet Functions 2 August 14th 06 02:43 AM
formula Problem Little Willie Excel Discussion (Misc queries) 2 August 17th 05 04:42 AM
Formula problem Mike Excel Worksheet Functions 2 July 20th 05 02:09 AM
Formula Problem J.C.De New Users to Excel 1 January 21st 05 04:22 PM


All times are GMT +1. The time now is 02:41 PM.

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"