Thread: Size of Row
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
joel joel is offline
external usenet poster
 
Posts: 9,101
Default Size of Row

instead of
=if(a1 < "",1)

use
=if(a1 < "",len(a1))

this will give tthe number of characters (bytes) in each cell for text
characters.


" wrote:

Hi,

Does anyone know of a quick way of working out how much data a row
contains?

I was hoping to be able to make an estimate of how big a workbook
could get.

Thanks,
Mark