#Value!

whis

New Member
Joined
Oct 16, 2006
Messages
2
=CONCATENATE(B2,C2)

I use the formula above to combine the text, but it give me answer #Value!.....

How to make it Blank if the answer is #Value! ?
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Hi Whis

Welcome to the Board!

Does this happen beacuse one of your source cells (ie B2 or C2) contains the error? If so, maybe you could use:

=IF(OR(ISERROR(B2),ISERROR(C2)),"",B2&C2)

Best regards

Richard
 
Upvote 0
or- if you mean your doing it on a range of cells and it works on some but not on others (due to the data) then just do a copy- paste special (as values) then do a find and replace #value! with nothing and it will be blank
 
Upvote 0
Thank you hardSchollar and preqin.

I still got the problem.

1)B1=50 , C1=Like

=CONCATENATE(B1,C1)

answer = 50Like

2)B2=50 , C2=

=CONCATENATE(B2,C2)

answer = #Value!

How to make the #value! = 50 ?

Thank you.
 
Upvote 0
2)B2=50 , C2=

=CONCATENATE(B2,C2)

answer = #Value!

How to make the #value! = 50 ?
I can't reproduce that error.
If cell C2 is truly blank, I get the expected result of "50".

Is cell C2 really blank? If you use the formula =LEN(C2), does it return 0?
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,684
Members
448,977
Latest member
dbonilla0331

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