ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   ISBLANK Formula Help Request (https://www.excelbanter.com/excel-worksheet-functions/36710-isblank-formula-help-request.html)

John C. Harris, MPA

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



Aladin Akyurek



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"))

Anne Troy

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





bj

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




John C. Harris, MPA

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





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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com