0

php-excelまたはlaravel-excelを使用して、次の構造を持つテーブルを作成するとします。

<table>
   <thead>
      <th>Column A</th>
      <th>Column B</th>
   </thead>
   <tbody>
      <tr>
        <td>value 1</td>
        <td>
          <table>
              <thead>
                 <th>neste column 1</th>
                 <th>nest column 2</th>
              </thead>
              <tbody>
                 <tr>
                    <td>nested value 1</td>
                    <td>nested value 2</td>
                 </tr>
              </tbody> 
          </table>
         </td>
       </tr>  
   </tbody>
</table>

いろいろ検索したところ、Excel は入れ子になったテーブルをサポートしていないようです。可能であれば、どうすればそれを行うことができますか?

4

0 に答える 0