Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Florida Flamingo
 
Posts: n/a
Default What function do I use ?

I need advice on what function I need in the following scenarios.


1. Is the value in A2 between 13.00 and 19.00 If true print Yes in B2, if
false print No in B2

======================================
Ex:
A1="no"
B1=270
C1="n/a"


2. I need to check the numerical value in 3 cells. Only one will have a
numerical value, and I want to print that value in C2.

3. I need to check the numerical value in 3 cells. Only one will have a
numerical value, and I want to take that value and multiply by 2080 and
print in D2.

=======================================
I think this is similar to #3 above.

4. If a value is "no" print D4 in D5, but if the value is "yes" print D2
value multiplied by 2080 in D5

TIA


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


"Florida Flamingo" wrote in message
. ..
I need advice on what function I need in the following scenarios.


1. Is the value in A2 between 13.00 and 19.00 If true print Yes in B2,

if
false print No in B2


=IF(AND(A2=--"13:00:00",A2<=--"19:00:00"),"Yes","No")

2. I need to check the numerical value in 3 cells. Only one will have a
numerical value, and I want to print that value in C2.


=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,"")))

3. I need to check the numerical value in 3 cells. Only one will have a
numerical value, and I want to take that value and multiply by 2080 and
print in D2.



=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,0)))*2080

4. If a value is "no" print D4 in D5, but if the value is "yes" print D2
value multiplied by 2080 in D5


=IF(E1="no",D4,IF(E1="yes",D2*2080,""))


  #3   Report Post  
Florida Flamingo
 
Posts: n/a
Default

OMG! Thanks, I'll try it.


"Bob Phillips" wrote in message
...

"Florida Flamingo" wrote in message
. ..
I need advice on what function I need in the following scenarios.


1. Is the value in A2 between 13.00 and 19.00 If true print Yes in B2,

if
false print No in B2


=IF(AND(A2=--"13:00:00",A2<=--"19:00:00"),"Yes","No")

2. I need to check the numerical value in 3 cells. Only one will have a
numerical value, and I want to print that value in C2.


=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,"")))

3. I need to check the numerical value in 3 cells. Only one will have a
numerical value, and I want to take that value and multiply by 2080 and
print in D2.



=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,0)))*2080

4. If a value is "no" print D4 in D5, but if the value is "yes" print D2
value multiplied by 2080 in D5


=IF(E1="no",D4,IF(E1="yes",D2*2080,""))




  #4   Report Post  
Florida Flamingo
 
Posts: n/a
Default

As I worked this sheet further down, I came across another function that I
couldn't forsee. Can anyone be of help here.


AH21 = 29,000
or
AH21 = "N/A"


AH24 = "yes"
AH24 = "no"



Need this in one statement
===========================
If AH24 = "yes" "do message"
If AH24 = "no" add 4,000 to AH21

(Can cause #value error here if AH21 = "n/a")

=====================================
END




"Bob Phillips" wrote in message
...

"Florida Flamingo" wrote in message
. ..
I need advice on what function I need in the following scenarios.


1. Is the value in A2 between 13.00 and 19.00 If true print Yes in B2,

if
false print No in B2


=IF(AND(A2=--"13:00:00",A2<=--"19:00:00"),"Yes","No")

2. I need to check the numerical value in 3 cells. Only one will have a
numerical value, and I want to print that value in C2.


=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,"")))

3. I need to check the numerical value in 3 cells. Only one will have a
numerical value, and I want to take that value and multiply by 2080 and
print in D2.



=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,0)))*2080

4. If a value is "no" print D4 in D5, but if the value is "yes" print D2
value multiplied by 2080 in D5


=IF(E1="no",D4,IF(E1="yes",D2*2080,""))




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

Not sure on this one as to what exactly you mean, but give it a shot

=IF(AH24="yes","do message",IF(AH24="no",IF(AH21="N/A",AH21,AH21+4000),""))

--
HTH

Bob Phillips

"Florida Flamingo" wrote in message
. ..
As I worked this sheet further down, I came across another function that I
couldn't forsee. Can anyone be of help here.


AH21 = 29,000
or
AH21 = "N/A"


AH24 = "yes"
AH24 = "no"



Need this in one statement
===========================
If AH24 = "yes" "do message"
If AH24 = "no" add 4,000 to AH21

(Can cause #value error here if AH21 = "n/a")

=====================================
END




"Bob Phillips" wrote in message
...

"Florida Flamingo" wrote in message
. ..
I need advice on what function I need in the following scenarios.


1. Is the value in A2 between 13.00 and 19.00 If true print Yes in

B2,
if
false print No in B2


=IF(AND(A2=--"13:00:00",A2<=--"19:00:00"),"Yes","No")

2. I need to check the numerical value in 3 cells. Only one will have

a
numerical value, and I want to print that value in C2.


=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,"")))

3. I need to check the numerical value in 3 cells. Only one will have

a
numerical value, and I want to take that value and multiply by 2080 and
print in D2.



=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,0)))*2080

4. If a value is "no" print D4 in D5, but if the value is "yes" print

D2
value multiplied by 2080 in D5


=IF(E1="no",D4,IF(E1="yes",D2*2080,""))








  #6   Report Post  
Florida Flamingo
 
Posts: n/a
Default

WOW, you're fantastic. That did it. Since I used the exact cell
references, I just cut-n-pasted and held my breath. It worked. I just
changed the "do message".

It's a chart to calculate a wage increase when promoting someone from hourly
to a management training program or hiring in an experienced external
candidate. The issue that made it hard was that hourly promotes are usually
at a lower wage during training and then receive a bonus after graduation,
while an external candidate is brought into the company at a much higher
rate, therefore not receiving a bonus for training.

Thank you very much. You've made a complicated chart user friendly for a
lot of us.
- Genie



"Bob Phillips" wrote in message
...
Not sure on this one as to what exactly you mean, but give it a shot

=IF(AH24="yes","do
message",IF(AH24="no",IF(AH21="N/A",AH21,AH21+4000),""))

--
HTH

Bob Phillips

"Florida Flamingo" wrote in message
. ..
As I worked this sheet further down, I came across another function that
I
couldn't forsee. Can anyone be of help here.


AH21 = 29,000
or
AH21 = "N/A"


AH24 = "yes"
AH24 = "no"



Need this in one statement
===========================
If AH24 = "yes" "do message"
If AH24 = "no" add 4,000 to AH21

(Can cause #value error here if AH21 = "n/a")

=====================================
END




"Bob Phillips" wrote in message
...

"Florida Flamingo" wrote in message
. ..
I need advice on what function I need in the following scenarios.


1. Is the value in A2 between 13.00 and 19.00 If true print Yes in

B2,
if
false print No in B2

=IF(AND(A2=--"13:00:00",A2<=--"19:00:00"),"Yes","No")

2. I need to check the numerical value in 3 cells. Only one will
have

a
numerical value, and I want to print that value in C2.

=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,"")))

3. I need to check the numerical value in 3 cells. Only one will
have

a
numerical value, and I want to take that value and multiply by 2080
and
print in D2.


=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,0)))*2080

4. If a value is "no" print D4 in D5, but if the value is "yes" print

D2
value multiplied by 2080 in D5

=IF(E1="no",D4,IF(E1="yes",D2*2080,""))








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

How could I refuse a Florida flamingo :-)

Bob

"Florida Flamingo" wrote in message
. ..
WOW, you're fantastic. That did it. Since I used the exact cell
references, I just cut-n-pasted and held my breath. It worked. I just
changed the "do message".

It's a chart to calculate a wage increase when promoting someone from

hourly
to a management training program or hiring in an experienced external
candidate. The issue that made it hard was that hourly promotes are

usually
at a lower wage during training and then receive a bonus after graduation,
while an external candidate is brought into the company at a much higher
rate, therefore not receiving a bonus for training.

Thank you very much. You've made a complicated chart user friendly for a
lot of us.
- Genie



"Bob Phillips" wrote in message
...
Not sure on this one as to what exactly you mean, but give it a shot

=IF(AH24="yes","do
message",IF(AH24="no",IF(AH21="N/A",AH21,AH21+4000),""))

--
HTH

Bob Phillips

"Florida Flamingo" wrote in message
. ..
As I worked this sheet further down, I came across another function

that
I
couldn't forsee. Can anyone be of help here.


AH21 = 29,000
or
AH21 = "N/A"


AH24 = "yes"
AH24 = "no"



Need this in one statement
===========================
If AH24 = "yes" "do message"
If AH24 = "no" add 4,000 to AH21

(Can cause #value error here if AH21 = "n/a")

=====================================
END




"Bob Phillips" wrote in message
...

"Florida Flamingo" wrote in message
. ..
I need advice on what function I need in the following scenarios.


1. Is the value in A2 between 13.00 and 19.00 If true print Yes in

B2,
if
false print No in B2

=IF(AND(A2=--"13:00:00",A2<=--"19:00:00"),"Yes","No")

2. I need to check the numerical value in 3 cells. Only one will
have

a
numerical value, and I want to print that value in C2.

=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,"")))

3. I need to check the numerical value in 3 cells. Only one will
have

a
numerical value, and I want to take that value and multiply by 2080
and
print in D2.


=IF(ISNUMBER(D1),D1,IF(ISNUMBER(D2),D2,IF(ISNUMBER (D3),D3,0)))*2080

4. If a value is "no" print D4 in D5, but if the value is "yes"

print
D2
value multiplied by 2080 in D5

=IF(E1="no",D4,IF(E1="yes",D2*2080,""))










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
Date & Time mully New Users to Excel 4 May 23rd 05 11:56 AM
Automatically up date time in a cell Mark Excel Discussion (Misc queries) 5 May 12th 05 12:26 AM
clock Wildman Excel Worksheet Functions 2 April 26th 05 10:31 AM
Need a ISWorkday Function -- Any Ideas Mark Excel Worksheet Functions 5 March 29th 05 01:58 AM
Conversion SVC Excel Worksheet Functions 9 February 28th 05 02:29 PM


All times are GMT +1. The time now is 12:09 AM.

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"