Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default complicated excel formula

Good evening!

Can you PLEASE help me with the formatting of my excel formula?

Basically, I am trying to recalculate my employees goals based on their
attendance. Their attendance is measured at 25%,50%, 75% or 100% based. I am
trying to program excel to read cell $c$6 and if that cell is 25%, use this
formula for collections:
=IF(AND(B61<=600.75),1,IF(AND(B61=600.76,B61<=120 0.75),2,
IF(AND(B61=1200.76,B61<=1800.75),3, IF(AND(B61=180.75,B61<=2400.75),4,
IF(AND(B61=2400.76),5))))) and if cell $c$6 = 50%, use a formula to read
its variables. Can you please help? MS Online community will not allow me to
initiate a new question for some odd reason. Thanks



25% days wked
Goal 1
Goal 2
Goal 3
Goal 4
Goal 5

Collection
0-$600.75
$600.76-$1200.75
$1200.76-$1800.75


$1800.76-2400.75
$2400.76




Inbound Calls
<$250
$251-$275
$276-$300
$301-$325
$326









50% days wked






Collections
<$1201.50
$1201.51-$2401.50
$2401.51-$3601.50
$3601.51-$4801.50
$4801.51


Inbound Calls
<500
501-550
551-600
601-650
651









75% days worked






Collections
<$1802.25
$1802.26-$3602.25
$3602.26-$5402.25
$5402.26-$7202.25
$7202.26


Inbound calls
<750
751-825
826-899
900-975
976









100% days worked






Collections
<$2403
$2404-$4803
$4804-$7203
$7204-$9603
$9604


Inbound Calls
<999
1000-1099
1100-1199
1200-1299
=1300






  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default complicated excel formula

Try something like this:

=IF(C6=25%,IF(B61="","",IF(B61<=600.75,1,
IF(AND(B61600.75,B61<=1200.75),2,
IF(AND(B611200.75,B61<=1800.75),3,
IF(AND(B611800.75,B61<=2400.75),4,
IF(B612400.75,5,)))))),"")

(cleaned up your limits & a typo, removed extraneous ANDs, & plugged in the
additional IF checks)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"sweetpeach" wrote in message
...
Good evening!

Can you PLEASE help me with the formatting of my excel formula?

Basically, I am trying to recalculate my employee's goals based on their
attendance. Their attendance is measured at 25%,50%, 75% or 100% based. I
am
trying to program excel to read cell $c$6 and if that cell is 25%, use
this
formula for collections:
=IF(AND(B61<=600.75),1,IF(AND(B61=600.76,B61<=120 0.75),2,
IF(AND(B61=1200.76,B61<=1800.75),3, IF(AND(B61=180.75,B61<=2400.75),4,
IF(AND(B61=2400.76),5))))) and if cell $c$6 = 50%, use a formula to read
it's variables. Can you please help? MS Online community will not allow me
to
initiate a new question for some odd reason. Thanks



25% days wked
Goal 1
Goal 2
Goal 3
Goal 4
Goal 5

Collection
0-$600.75
$600.76-$1200.75
$1200.76-$1800.75


$1800.76-2400.75
$2400.76




Inbound Calls
<$250
$251-$275
$276-$300
$301-$325
$326









50% days wked






Collections
<$1201.50
$1201.51-$2401.50
$2401.51-$3601.50
$3601.51-$4801.50
$4801.51


Inbound Calls
<500
501-550
551-600
601-650
651









75% days worked






Collections
<$1802.25
$1802.26-$3602.25
$3602.26-$5402.25
$5402.26-$7202.25
$7202.26


Inbound calls
<750
751-825
826-899
900-975
976









100% days worked






Collections
<$2403
$2404-$4803
$4804-$7203
$7204-$9603
$9604


Inbound Calls
<999
1000-1099
1100-1199
1200-1299
=1300








  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default complicated excel formula


THANK YOU..
I was able to utilize this format..You are a life saver..now I can get some
sleep!
"Max" wrote:

Try something like this:

=IF(C6=25%,IF(B61="","",IF(B61<=600.75,1,
IF(AND(B61600.75,B61<=1200.75),2,
IF(AND(B611200.75,B61<=1800.75),3,
IF(AND(B611800.75,B61<=2400.75),4,
IF(B612400.75,5,)))))),"")

(cleaned up your limits & a typo, removed extraneous ANDs, & plugged in the
additional IF checks)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"sweetpeach" wrote in message
...
Good evening!

Can you PLEASE help me with the formatting of my excel formula?

Basically, I am trying to recalculate my employee's goals based on their
attendance. Their attendance is measured at 25%,50%, 75% or 100% based. I
am
trying to program excel to read cell $c$6 and if that cell is 25%, use
this
formula for collections:
=IF(AND(B61<=600.75),1,IF(AND(B61=600.76,B61<=120 0.75),2,
IF(AND(B61=1200.76,B61<=1800.75),3, IF(AND(B61=180.75,B61<=2400.75),4,
IF(AND(B61=2400.76),5))))) and if cell $c$6 = 50%, use a formula to read
it's variables. Can you please help? MS Online community will not allow me
to
initiate a new question for some odd reason. Thanks



25% days wked
Goal 1
Goal 2
Goal 3
Goal 4
Goal 5

Collection
0-$600.75
$600.76-$1200.75
$1200.76-$1800.75


$1800.76-2400.75
$2400.76




Inbound Calls
<$250
$251-$275
$276-$300
$301-$325
$326









50% days wked






Collections
<$1201.50
$1201.51-$2401.50
$2401.51-$3601.50
$3601.51-$4801.50
$4801.51


Inbound Calls
<500
501-550
551-600
601-650
651









75% days worked






Collections
<$1802.25
$1802.26-$3602.25
$3602.26-$5402.25
$5402.26-$7202.25
$7202.26


Inbound calls
<750
751-825
826-899
900-975
976









100% days worked






Collections
<$2403
$2404-$4803
$4804-$7203
$7204-$9603
$9604


Inbound Calls
<999
1000-1099
1100-1199
1200-1299
=1300









  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default complicated excel formula

welcome, sweetpeach.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"sweetpeach" wrote in message
...

THANK YOU..
I was able to utilize this format..You are a life saver..now I can get
some
sleep!



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

No need for the ANDs:

=IF(C6=25%,IF(B61="","",IF(B61<=600.75,1,IF(B61<=1 200.75,2,IF(B61<=1800.75,3,IF(B61<=2400.75,4,5)))) ),"")

A little bit shorter:

=IF(C6=25%,IF(B61="","",MATCH(B61,{0,600.76,1200.7 6,1800.76,2400.76})),"")

--
Biff
Microsoft Excel MVP


"Max" wrote in message
...
Try something like this:

=IF(C6=25%,IF(B61="","",IF(B61<=600.75,1,
IF(AND(B61600.75,B61<=1200.75),2,
IF(AND(B611200.75,B61<=1800.75),3,
IF(AND(B611800.75,B61<=2400.75),4,
IF(B612400.75,5,)))))),"")

(cleaned up your limits & a typo, removed extraneous ANDs, & plugged in
the additional IF checks)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"sweetpeach" wrote in message
...
Good evening!

Can you PLEASE help me with the formatting of my excel formula?

Basically, I am trying to recalculate my employee's goals based on their
attendance. Their attendance is measured at 25%,50%, 75% or 100% based.
I am
trying to program excel to read cell $c$6 and if that cell is 25%, use
this
formula for collections:
=IF(AND(B61<=600.75),1,IF(AND(B61=600.76,B61<=120 0.75),2,
IF(AND(B61=1200.76,B61<=1800.75),3, IF(AND(B61=180.75,B61<=2400.75),4,
IF(AND(B61=2400.76),5))))) and if cell $c$6 = 50%, use a formula to read
it's variables. Can you please help? MS Online community will not allow
me to
initiate a new question for some odd reason. Thanks



25% days wked
Goal 1
Goal 2
Goal 3
Goal 4
Goal 5

Collection
0-$600.75
$600.76-$1200.75
$1200.76-$1800.75


$1800.76-2400.75
$2400.76




Inbound Calls
<$250
$251-$275
$276-$300
$301-$325
$326









50% days wked






Collections
<$1201.50
$1201.51-$2401.50
$2401.51-$3601.50
$3601.51-$4801.50
$4801.51


Inbound Calls
<500
501-550
551-600
601-650
651









75% days worked






Collections
<$1802.25
$1802.26-$3602.25
$3602.26-$5402.25
$5402.26-$7202.25
$7202.26


Inbound calls
<750
751-825
826-899
900-975
976









100% days worked






Collections
<$2403
$2404-$4803
$4804-$7203
$7204-$9603
$9604


Inbound Calls
<999
1000-1099
1100-1199
1200-1299
=1300












  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default complicated excel formula

P.S

However, looking at their post, I think they should build a table that holds
all of the %s - 25, 50, 75, 100.

I don't see how the "Inbound Calls" are related, though.

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
No need for the ANDs:

=IF(C6=25%,IF(B61="","",IF(B61<=600.75,1,IF(B61<=1 200.75,2,IF(B61<=1800.75,3,IF(B61<=2400.75,4,5)))) ),"")

A little bit shorter:

=IF(C6=25%,IF(B61="","",MATCH(B61,{0,600.76,1200.7 6,1800.76,2400.76})),"")

--
Biff
Microsoft Excel MVP


"Max" wrote in message
...
Try something like this:

=IF(C6=25%,IF(B61="","",IF(B61<=600.75,1,
IF(AND(B61600.75,B61<=1200.75),2,
IF(AND(B611200.75,B61<=1800.75),3,
IF(AND(B611800.75,B61<=2400.75),4,
IF(B612400.75,5,)))))),"")

(cleaned up your limits & a typo, removed extraneous ANDs, & plugged in
the additional IF checks)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"sweetpeach" wrote in message
...
Good evening!

Can you PLEASE help me with the formatting of my excel formula?

Basically, I am trying to recalculate my employee's goals based on their
attendance. Their attendance is measured at 25%,50%, 75% or 100% based.
I am
trying to program excel to read cell $c$6 and if that cell is 25%, use
this
formula for collections:
=IF(AND(B61<=600.75),1,IF(AND(B61=600.76,B61<=120 0.75),2,
IF(AND(B61=1200.76,B61<=1800.75),3, IF(AND(B61=180.75,B61<=2400.75),4,
IF(AND(B61=2400.76),5))))) and if cell $c$6 = 50%, use a formula to
read
it's variables. Can you please help? MS Online community will not allow
me to
initiate a new question for some odd reason. Thanks



25% days wked
Goal 1
Goal 2
Goal 3
Goal 4
Goal 5

Collection
0-$600.75
$600.76-$1200.75
$1200.76-$1800.75


$1800.76-2400.75
$2400.76



Inbound Calls
<$250
$251-$275
$276-$300
$301-$325
$326








50% days wked






Collections
<$1201.50
$1201.51-$2401.50
$2401.51-$3601.50
$3601.51-$4801.50
$4801.51

Inbound Calls
<500
501-550
551-600
601-650
651








75% days worked






Collections
<$1802.25
$1802.26-$3602.25
$3602.26-$5402.25
$5402.26-$7202.25
$7202.26

Inbound calls
<750
751-825
826-899
900-975
976








100% days worked






Collections
<$2403
$2404-$4803
$4804-$7203
$7204-$9603
$9604

Inbound Calls
<999
1000-1099
1100-1199
1200-1299
=1300











  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default complicated excel formula

What do the Inbound Calls tables have to do with it?

--
Biff
Microsoft Excel MVP


"sweetpeach" wrote in message
...
Good evening!

Can you PLEASE help me with the formatting of my excel formula?

Basically, I am trying to recalculate my employee's goals based on their
attendance. Their attendance is measured at 25%,50%, 75% or 100% based. I
am
trying to program excel to read cell $c$6 and if that cell is 25%, use
this
formula for collections:
=IF(AND(B61<=600.75),1,IF(AND(B61=600.76,B61<=120 0.75),2,
IF(AND(B61=1200.76,B61<=1800.75),3, IF(AND(B61=180.75,B61<=2400.75),4,
IF(AND(B61=2400.76),5))))) and if cell $c$6 = 50%, use a formula to read
it's variables. Can you please help? MS Online community will not allow me
to
initiate a new question for some odd reason. Thanks



25% days wked
Goal 1
Goal 2
Goal 3
Goal 4
Goal 5

Collection
0-$600.75
$600.76-$1200.75
$1200.76-$1800.75


$1800.76-2400.75
$2400.76




Inbound Calls
<$250
$251-$275
$276-$300
$301-$325
$326









50% days wked






Collections
<$1201.50
$1201.51-$2401.50
$2401.51-$3601.50
$3601.51-$4801.50
$4801.51


Inbound Calls
<500
501-550
551-600
601-650
651









75% days worked






Collections
<$1802.25
$1802.26-$3602.25
$3602.26-$5402.25
$5402.26-$7202.25
$7202.26


Inbound calls
<750
751-825
826-899
900-975
976









100% days worked






Collections
<$2403
$2404-$4803
$4804-$7203
$7204-$9603
$9604


Inbound Calls
<999
1000-1099
1100-1199
1200-1299
=1300








  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default complicated excel formula

What do the Inbound Calls tables have to do with it?
Now that you say it, must admit I completely missed the portion of the orig.
post beyond the word "Thanks". For some strange reason. Maybe the word
simply triggers a natural termination of the post in the mind.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---


  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default complicated excel formula

I'm reading the posts through OE. I always (for some strange reason!) look a
the size of the window scroll bar. If the scroll bar is long that means the
post is short. If the scroll bar is short that means the post is long.

I know, I'm strange! <bg

--
Biff
Microsoft Excel MVP


"Max" wrote in message
...
What do the Inbound Calls tables have to do with it?

Now that you say it, must admit I completely missed the portion of the
orig. post beyond the word "Thanks". For some strange reason. Maybe the
word simply triggers a natural termination of the post in the mind.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---



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
Complicated formula Lemony_M Excel Discussion (Misc queries) 10 October 1st 07 03:59 PM
I have a complicated formula that I need SERIOUS help with please! Thrlckr Excel Discussion (Misc queries) 6 January 12th 07 08:12 PM
complicated if then formula...need help LincAg Excel Discussion (Misc queries) 3 May 25th 06 06:19 PM
Complicated IF Formula Luke Excel Worksheet Functions 5 November 8th 05 02:18 PM
Complicated Formula Stephen Excel Discussion (Misc queries) 12 April 17th 05 01:15 PM


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