ISERROR with Value function

Celticshadow

Active Member
Joined
Aug 16, 2010
Messages
414
Office Version
  1. 365
Platform
  1. Windows
Hi All

I am using the value function to convert possible text to a number in col A, however can I use the ISERROR function within this also as some cells are blank and with the Value function return #value as below.



Text Values
With Value Function Returns as below
Data Required possibly using ISERROR
7.15
7.15
7.15
#value
7.15
7.15
7.15
#value

<tbody>
</tbody>

Thanks in advance.

Regards
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
If you are using xl2003 or below (and thus are unable to use IFERROR) perhaps:

=IF(A1="","",VALUE(A1))

If you just want to do everything at once, you should be able to use Data>TextToColumns on column A (ie select the entire column then Data>TextToColumns>Finish) which can work on the entire column at once (no formulas involved)
 
Upvote 0
Maybe try using the IFERROR function:
=IFERROR(VALUE(A1),"")

Hi mvsub1

Many thanks for replying and am delighted to say that the above formula works perfectly. I was unaware there was an iferror function so something else learned also. Thanks again.

Regards
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

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