Replace #value! error with a blank cell

enots11

New Member
Joined
Mar 4, 2013
Messages
5
I am working on an observation form where an evaluator with type in text from the observation in the first column and then code it. We have 8 codes 2a,2b,2c,2d,3a,3b,3c,3d. I then wanted all the 2a information to move to a column names 2a, all the 2b information to a column named 2b and so on.

In column A the evaluator would type in information such as teacher greeted students when they entered the room, 2a

the ,2a would be the coding that refers to our rubric.

I used =LEFT(A4,FIND("2a",A4)-1)

All is well and the information is going where it is suppose to, but in the other 7 columns there is an error message #value! that I do not want. I have done a conditional formatting to make the text white but when I copy and paste the information into another file the error message shows.

Any idea how I can just get rid of the error message in the other cells?

TIA
Donna
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Welcome to the board, try:
Rich (BB code):
=IFERROR(LEFT(A4,FIND("2a",A4)-1),"")
 
Upvote 0
Thank you. I tried that and the text
=IFERROR(LEFT(A4,FIND("2a",A4)-1),"")
shows up in the cell.

<tbody>
</tbody>
 
Upvote 0
Check the formatting settings of the cell, I suspect it's set to Text based on your answer, maybe change it to General
 
Upvote 0
I so appreciate this help. We are getting closer....I think. I changed the settings to general and then tried =IFERROR(LEFT(A4,FIND("2a",A4)-1),"")
and now I have a#NAME? error. Is that better? Worse?
 
Upvote 0
This worked:

=IF(ISERROR(LEFT(A4,FIND("2a",A4)-1)),"",LEFT(A4,FIND("2a",A4)-1))


Thank you for all of your help.
 
Upvote 0
IFERROR is a function in Excel versions 2007 and higher, I suspect you're using 2003, in which case IFERROR would give a #NAME error. Glad you found a solution
 
Upvote 0

Forum statistics

Threads
1,215,234
Messages
6,123,773
Members
449,123
Latest member
StorageQueen24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top