Single quote coming automatically

satyadev

New Member
Joined
Aug 8, 2014
Messages
2
Hi

I am trying to concatenate a number value with string and setting the result to a cell value. It was adding a single quote at the start automatically and only visible from formula bar. I dont want to have this single quote and i really dont understand from where it is getting appended. kindly help me.

Regards
Satyadev
 
Last edited:

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Try:
Code:
=A1&" "&A2[SIZE=6]
[/SIZE]
Or try:
Code:
="Mary had a little "&A2
 
Last edited:
Upvote 0
Thanks for quick reply but it did not worked for me.

Kindly find below what i am doing.

importSheetCellValue = 1234
dataExtendValue = "-Do"

ThisWorkbook.Sheets("Import").Cells(iRow, importSheetColumn).Value = CStr(importSheetCellValue) & " " & CStr(dataExtendValue)
 
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,906
Members
452,366
Latest member
TePunaBloke

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