Cell reference character limit

jstn07s

New Member
Joined
Jun 25, 2014
Messages
2
Working on an uploadable spreadsheet that translates info entered on one sheet to another. The comments field column on sheet 2 is formulated as =TEXT('Sheet1'!CellX, "")

The comments are being referenced, but there seems to be a character limit, as longer ones are generating a #VALUE! error.

Any help, alternative formulas , etc. is much appreciated. Thanks!
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Looks like you are correct - there's a 255 character limit.

Could you just get away with:
=if(len('Sheet1'!CellX)>255,'Sheet1'!CellX,text('Sheet1'!CellX,""))
 
Upvote 0
Thanks for this. Was trying to tool around with an IF formula but couldn't get it exactly right. Of course I can rely on a fellow Michigander for help.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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