印刷時にピボットのタイトルを表示する

CCP2.Pivotテーブルの_html_exportフィールドの計算式を編集することで、印刷時のレイアウトを任意に変更することができます。

htmlの知識が必要です。 

事前にバックアップをしてからお試しください。

サンプル

Let ( encoding = If ( IsEmpty ( settings_file_encoding ) ; "UTF-8" ; settings_file_encoding ) ;
 "<html>
 <head>" & 
 
 "<title>" & pivot_title & "</title>" & 
 
 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=" & encoding & "\">
 <style>" & setting_css & " body { border: 0; margin: 5px 5px 5px 5px; } </style>" & 
 If ( setting_include_jquery ; "<script type=\"text/javascript\">" & setting_jquery & "</script>" ; "" ) &
 "</head><body>" & 
 If ( setting_include_jquery and not IsEmpty ( setting_jquery ) ; "<script type=\"text/javascript\">" & setting_js & "</script>" ; "" ) &
 "<div" & If ( not IsEmpty ( pivot_css_table_id ) ; " id=\"" & pivot_css_table_id & "\"" ; "" ) & ">" & 
 
 "<table id=\"pivot_title\" style=\"margin-bottom:20px;\">
 <tr>
 <th style=\"font-size:120%;\">タイトル</th>
 <td style=\"font-size:120%;\">" & pivot_title & "</td>
 </tr>
 </table>" & 
 
 pivot_html_table & "</div>
 <script type=\"text/javascript\"> window.print(); </script>
 </body>
 </html>"
 )