concatenate IF formula error

polyocho

New Member
Joined
Dec 28, 2014
Messages
14
I am trying to use a concatenate if text is present but the text to display if value is false is not appearing correctly. Can someone tell me how to correct my formula?

F8 has multiple data about how peaches feels (ie happys, sad, mad etc). If this is not blank then I would like to have G8 concatenate this with the statement "peaches feels". However, if F8 is blank then I would like nothing to be displayed in G8. My formula is failing and I am not sure why and I have tried inserting "" to define the false argument in multiple places but when F8 is blank G8 still says "Peaches feels"

=IF(ISTEXT(F8),CONCATENATE("Peaches feels ",F8), " ")

I have also tried

=IF(ISTEXT(F8),CONCATENATE("The symptoms do not occur on ","",F8,""),"")

any suggestions?

Thank you in advance.
 
I am trying to use a concatenate if text is present but the text to display if value is false is not appearing correctly. Can someone tell me how to correct my formula?

F8 has multiple data about how peaches feels (ie happys, sad, mad etc). If this is not blank then I would like to have G8 concatenate this with the statement "peaches feels". However, if F8 is blank then I would like nothing to be displayed in G8. My formula is failing and I am not sure why and I have tried inserting "" to define the false argument in multiple places but when F8 is blank G8 still says "Peaches feels"

=IF(ISTEXT(F8),CONCATENATE("Peaches feels ",F8), " ")

I have also tried

=IF(ISTEXT(F8),CONCATENATE("The symptoms do not occur on ","",F8,""),"")

any suggestions?

Try it like this instead...

=IF(F8="","",CONCATENATE("Peaches feels ",F8))

Although I like to concatenate text using the ampersand instead of the CONCATENATE function...

=IF(F8="","","Peaches feels "&F8)
 
Upvote 0

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