You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Max chars in xlsx cell 32 767.
I fix it for me in protected function writeCell()
if(mb_strlen($value) > 32767){
$value = "!!!!!!!!!!!!! Tooo long value !!!!!!!!!!!!!!!!!";
}
The text was updated successfully, but these errors were encountered:
mk-j
changed the title
Big cell value
Max Cell String length 32767
May 31, 2023
Max chars in xlsx cell 32 767.
I fix it for me in protected function writeCell()
if(mb_strlen($value) > 32767){
$value = "!!!!!!!!!!!!! Tooo long value !!!!!!!!!!!!!!!!!";
}
The text was updated successfully, but these errors were encountered: