Existe um limite no tamanho do nome de uma planilha do Excel?

Quando tento definir um nome longo da planilha usando ruby e win32ole com o seguinte código:

require "win32ole"
excel = WIN32OLE.new('Excel.Application')
excel.Visible = 1
puts excel.version
workbook = excel.Workbooks.Add
worksheet1 = workbook.Worksheets.Add
worksheet1.Name = "Pseudopseudohypoparathyroidism" #Length 30, fine
worksheet2 = workbook.Worksheets.Add
worksheet2.Name = "Supercalifragilisticexpialidocious" #Length 34, not fine

Eu recebo o seguinte:

12.0
-:9:in `method_missing': (in setting property `Name': ) (WIN32OLERuntimeError)
    OLE error code:800A03EC in Microsoft Office Excel
      You typed an invalid name for a sheet or chart. Make sure that:

 The name that you type does not exceed 31 characters.
 The name does not contain any of the following characters:  :  \  /  ?  *  [  or  ]
 You did not leave the name blank.
    HRESULT error code:0x80020009
      Exception occurred.
        from -:9:in `<main>'

A versão 12.0 indica que estou executando o Excel 2007, mas está reclamando que o nome da planilha é muito longo. Eu dei uma olhadaEspecificações e limites do Excel 2007&nbsp;como mencionado emesta resposta relacionada, e não consegui encontrá-lo mencionando esse limite. (Tentar renomear uma planilha manualmente sugere que pode haver esse limite)

Existe um limite e é um limite rígido ou que pode ser alterado alterando a configuração do Excel?