Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
John C. Harris, MPA
 
Posts: n/a
Default ISBLANK Formula Help Request

I hope that I can explain this correcty. Please bear with me.

I have most of this worksheet figured out, but the last formula is proving a
problem. Hopefully someone here can point me in the right direction.

For FCAT and Stanine Scores.

In the first column we have a percentage field that scores the studuent on a
pre-test (i.e.68.8%).

The next field field converts the percentage to an FCAT equivalent (i.e. 2)
The next field converts the 2 to a stanine equivalent (i.e. 3)

In the last field I have an IF statement that looks at the original
converted number and compares it to what the student received ont he actual
FCAT and Stanine. If the FCAT is higher that the converted number, it enters
"Improved", If Not the it enters "No". This is working fine.

The problem is that I need the IF statement to first look at the FCAT field
to see if it is blank. If it is blank, then I need it to look at the Stanine
field and run the corresponding formula for that. Usually they do not have
both.

So, In english:

If the FCAT score is blank, compare the Stanine score to the converted
Stanine score. If it is not blank, then compare the FCAT score to the
Converted FCAT score.

The current formula is: =IF(E4=C4,"Improved","No")
I need to add the ISBLANK statement in front first so that
IF E4 ISBLANK, then run =IF(G4=D4, "Improved","No") else =IF
(E4=C4,"Improved","No")

TIA


--
John C. Harris, MPA
JCZ Consulting Services, LLC


  #2   Report Post  
Aladin Akyurek
 
Posts: n/a
Default



John C. Harris, MPA wrote:
....
So, In english:

If the FCAT score is blank, compare the Stanine score to the converted
Stanine score. If it is not blank, then compare the FCAT score to the
Converted FCAT score.

The current formula is: =IF(E4=C4,"Improved","No")
I need to add the ISBLANK statement in front first so that
IF E4 ISBLANK, then run =IF(G4=D4, "Improved","No") else =IF
(E4=C4,"Improved","No")


=IF(ISBLANK(E4),IF(G4=D4, "Improved","No"),IF(E4=C4,"Improved","No"))
  #3   Report Post  
Anne Troy
 
Posts: n/a
Default

Hi, John. No need to post in multiple areas. I've answered in the other
group.
*******************
~Anne Troy

www.OfficeArticles.com


"John C. Harris, MPA" wrote in message
...
I hope that I can explain this correcty. Please bear with me.

I have most of this worksheet figured out, but the last formula is proving

a
problem. Hopefully someone here can point me in the right direction.

For FCAT and Stanine Scores.

In the first column we have a percentage field that scores the studuent on

a
pre-test (i.e.68.8%).

The next field field converts the percentage to an FCAT equivalent (i.e.

2)
The next field converts the 2 to a stanine equivalent (i.e. 3)

In the last field I have an IF statement that looks at the original
converted number and compares it to what the student received ont he

actual
FCAT and Stanine. If the FCAT is higher that the converted number, it

enters
"Improved", If Not the it enters "No". This is working fine.

The problem is that I need the IF statement to first look at the FCAT

field
to see if it is blank. If it is blank, then I need it to look at the

Stanine
field and run the corresponding formula for that. Usually they do not have
both.

So, In english:

If the FCAT score is blank, compare the Stanine score to the converted
Stanine score. If it is not blank, then compare the FCAT score to the
Converted FCAT score.

The current formula is: =IF(E4=C4,"Improved","No")
I need to add the ISBLANK statement in front first so that
IF E4 ISBLANK, then run =IF(G4=D4, "Improved","No") else =IF
(E4=C4,"Improved","No")

TIA


--
John C. Harris, MPA
JCZ Consulting Services, LLC




  #4   Report Post  
bj
 
Posts: n/a
Default

try
=if(E4='',if(G4=D4,"improved","NO"),if(E4=C4,"im proved","NO")

"John C. Harris, MPA" wrote:

I hope that I can explain this correcty. Please bear with me.

I have most of this worksheet figured out, but the last formula is proving a
problem. Hopefully someone here can point me in the right direction.

For FCAT and Stanine Scores.

In the first column we have a percentage field that scores the studuent on a
pre-test (i.e.68.8%).

The next field field converts the percentage to an FCAT equivalent (i.e. 2)
The next field converts the 2 to a stanine equivalent (i.e. 3)

In the last field I have an IF statement that looks at the original
converted number and compares it to what the student received ont he actual
FCAT and Stanine. If the FCAT is higher that the converted number, it enters
"Improved", If Not the it enters "No". This is working fine.

The problem is that I need the IF statement to first look at the FCAT field
to see if it is blank. If it is blank, then I need it to look at the Stanine
field and run the corresponding formula for that. Usually they do not have
both.

So, In english:

If the FCAT score is blank, compare the Stanine score to the converted
Stanine score. If it is not blank, then compare the FCAT score to the
Converted FCAT score.

The current formula is: =IF(E4=C4,"Improved","No")
I need to add the ISBLANK statement in front first so that
IF E4 ISBLANK, then run =IF(G4=D4, "Improved","No") else =IF
(E4=C4,"Improved","No")

TIA


--
John C. Harris, MPA
JCZ Consulting Services, LLC



  #5   Report Post  
John C. Harris, MPA
 
Posts: n/a
Default

This one worked:

=IF(ISBLANK(E4),IF(G4=D4, "Improved","No"),IF(E4=C4,"Improved","No"))

I was forgetting the beginning IF statement. In the help file it starts it
with =ISBLANK. Everything else I had correct. Thanks for the time and
effort.

--
John C. Harris, MPA
JCZ Consulting Services, LLC



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
Simplify formula Luke Excel Worksheet Functions 37 May 6th 05 07:21 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
Another Date Formula Request Qaspec Excel Worksheet Functions 1 January 21st 05 04:21 PM
Cell doesn't show formula result - it shows formula (CTRL + ' doe. o0o0o0o Excel Worksheet Functions 6 November 19th 04 03:13 PM


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