> ## Documentation Index
> Fetch the complete documentation index at: https://docs.simen.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Charts & Tables

> Quickly generate and beautify charts and tables, automate analysis and reporting.

export const PromptBlock = ({prompt, link, title = "task"}) => {
  const handleCopy = () => {
    navigator.clipboard.writeText(prompt).catch(err => {
      console.error("Failed to copy text: ", err);
    });
  };
  return <div className="code-block mt-5 mb-8 not-prose rounded-2xl relative group text-gray-950 bg-gray-50 dark:bg-white/5 dark:text-gray-50 codeblock-light border border-gray-950/10 dark:border-white/10 p-0.5">
      <div className="flex text-gray-400 text-xs rounded-t-[14px] leading-6 font-medium pl-4 pr-2.5 py-1">
        <div className="flex-none flex items-center gap-1.5 text-gray-700 dark:text-gray-300">
          {title}
        </div>
        <div className="flex-1 flex items-center justify-end gap-1.5">
          {link && <div className="z-10 relative group/open-button">
             <a href={link} target="_blank" rel="noopener noreferrer" className="h-[26px] w-[26px] flex items-center justify-center rounded-md backdrop-blur" aria-label="Try it">
                <svg width="18" height="18" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" className="w-4 h-4 text-gray-400 group-hover/open-button:text-gray-500 dark:text-white/40 dark:group-hover/open-button:text-white/60">
                    <g fill="none" fillRule="evenodd">
                        <path d="m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" />
                        <path fill="currentColor" d="M5.669 4.76a1.47 1.47 0 0 1 2.04-1.177c1.062.454 3.442 1.533 6.462 3.276c3.021 1.744 5.146 3.267 6.069 3.958c.788.591.79 1.763.001 2.356c-.914.687-3.013 2.19-6.07 3.956c-3.06 1.766-5.412 2.832-6.464 3.28c-.906.387-1.92-.2-2.038-1.177c-.138-1.142-.396-3.735-.396-7.237c0-3.5.257-6.092.396-7.235" />
                    </g>
                </svg>
             </a>
            <div aria-hidden="true" className="absolute top-11 left-1/2 transform whitespace-nowrap -translate-x-1/2 -translate-y-1/2 group-hover/open-button:opacity-100 opacity-0 text-white rounded-lg px-1.5 py-0.5 text-xs bg-primary-dark">
              Try in Simen
            </div>
          </div>}
          <div className="z-10 relative">
            <button onClick={handleCopy} className="h-[26px] w-[26px] flex items-center justify-center rounded-md backdrop-blur peer group/copy-button" aria-label="Copy the contents from the code block">
              <svg width="18" height="18" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" className="w-4 h-4 text-gray-400 group-hover/copy-button:text-gray-500 dark:text-white/40 dark:group-hover/copy-button:text-white/60">
                <g fill="none">
                    <path d="m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" />
                    <path fill="currentColor" d="M19 2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2V4a2 2 0 0 1 2-2zm-9 13H8a1 1 0 0 0-.117 1.993L8 17h2a1 1 0 0 0 .117-1.993zm9-11H9v2h6a2 2 0 0 1 2 2v8h2zm-7 7H8a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2" />
                </g>
              </svg>
            </button>
            <div aria-hidden="true" className={`absolute top-11 left-1/2 transform whitespace-nowrap -translate-x-1/2 -translate-y-1/2 text-white rounded-lg px-1.5 py-0.5 text-xs bg-primary-dark opacity-0 peer-hover:opacity-100`}>
              Copy Prompt
            </div>
          </div>
        </div>
      </div>
      <div className="py-3.5 px-4 h-full dark:bg-codeblock relative text-sm leading-6 rounded-[14px] bg-white overflow-x-auto">
        <div className="leading-6">
            <pre className="shiki shiki-themes github-light-default dark-plus" style={{
    backgroundColor: 'transparent',
    color: 'rgb(31, 35, 40)'
  }}>
                <code className="!whitespace-pre-wrap">{prompt}</code>
            </pre>
        </div>
      </div>
    </div>;
};

## University Teacher｜Converting Handwritten Attendance Sheets to Digital Format

<PromptBlock title="Digitalizing Attendance Sheets" prompt="This is a classroom attendance check-in sheet, with names in the first column and classes in the second column. The rest are dates. Please help me summarize the data, treating checkmarks as attendance and unfilled or other symbols as absence. First put the statistical results in a new excel file. Then summarize the results to a new excel with two columns: name and attendance count" link="https://simen.ai/share/Ri13lC0wKJ" />

<Frame caption="Walter is recognizing the attendance sheet">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-31.mp4" />
</Frame>

## College Student｜Batch Digitalization of Paper Questionnaires for Summary

<PromptBlock title="Batch Paper Questionnaire Summary" prompt="These images are all completed questionnaire survey forms. Please first design a summary table based on the 16 questions on the questionnaire, then read the table content and summarize the results in a new excel file" link="https://simen.ai/share/nP1zhj0Ssn" />

<Frame caption="Walter is recognizing questionnaires">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-32.mp4" />
</Frame>

## Corporate Finance｜Batch Summary of Fixed-Format Travel Expense Reports

<PromptBlock title="Travel Expense Report Batch Summary" prompt="Please summarize the reimbursement content and amounts from these expense reports into an excel table, keeping columns for reimbursement department, reimburser, reimbursement item, summary, amount, cashier and time. Sort by time column" link="https://simen.ai/share/NODoD5b4Ib" />

<Frame caption="Walter is recognizing travel expense reports">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-33.mp4" />
</Frame>

## Budget Enthusiast｜Digitalizing Family Bill Mobile Memos

<PromptBlock title="Memo Recognition and Statistics" prompt="Convert the image content into an excel table, recording monthly expenses in detail. The excel columns should be: item (breakfast, water bill, snacks, etc.), amount (default unit is yuan, keep one decimal place), notes (e.g., breakfast 63 comes from 3*21, phone bill amount is monthly not daily)" link="https://simen.ai/share/hJnemRalTU" />

<Frame caption="Walter is recognizing memos">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-34.mp4" />
</Frame>

## Restaurant Owner｜Handwritten Order Menu Inventory Statistics

<PromptBlock title="Handwritten Order Menu Summary" prompt="Organize the image content into an excel table, accurately recognizing handwritten dish names, quantities and notes. The table should have three columns: dish name, quantity, notes" link="https://simen.ai/share/ve4NGC71jC" />

<Frame caption="Walter is recognizing handwritten order menus">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-35.mp4" />
</Frame>

## High School Teacher｜Quick Split of Student Mock Exam Scores

<PromptBlock title="Quick Score Sheet Split" prompt="Split the table in the image by each row into separate excel files, with file names as student names. Each excel file should contain two rows: the first row is the header, the second row is class, student name and each subject's score and grade ranking" link="https://simen.ai/share/id3fsIIa71" />

<Frame caption="Walter is recognizing and splitting score sheets">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-36.mp4" />
</Frame>

## Data Analyst｜Government Open Data Analysis and Summary

<PromptBlock title="Open Data Summary" prompt="Convert the image content into an excel table, note not to include the red stamp, only the table content. The table content should strictly follow the image format without disorder. The form filling time row is not needed. Pay attention to row height and column width to ensure cell content can be displayed normally" link="https://simen.ai/share/S5ty4o7Yum" />

<Frame caption="Walter is recognizing government open data">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-37.mp4" />
</Frame>

## Financial Accountant｜Digitalizing Paper Balance Sheets

<PromptBlock title="Balance Sheet Digitalization" prompt="This is a balance sheet, please convert the image content into an excel table. Note that only the content within the table lines in the image is needed, and cells should be automatically merged based on content. The table cell styles, such as left alignment, right alignment and center alignment must be completely consistent with the image" link="https://simen.ai/share/pCvhod9WYH" />

<Frame caption="Walter is recognizing balance sheets">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-38.mp4" />
</Frame>

## Data Analyst｜Digitalizing Colored Table Screenshots from Public Accounts

<PromptBlock title="Public Account Table Digitalization" prompt="This is a screenshot of a professional admission statistics table, please generate an excel table based on the screenshot" link="https://simen.ai/share/MsOUrdB5dN" />

<Frame caption="Walter is recognizing colored tables">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/bonnie-chart-case-39.mp4" />
</Frame>

## Fitness Enthusiast｜Converting Weight Loss Check-in Sheets to Digital Format and Creating Line Charts

<PromptBlock title="Weight Loss Check-in Sheet Statistics Chart" prompt="This is a weight loss check-in image, organized by weight loss days, with black handwritten content as weight. Please convert the image to an excel table. The first column header is days, the second column header is weight, fill in according to the content in the image. If not filled in the image, leave it blank in the table. And generate a line chart of weight changes based on the table content, place it in the same sheet" link="https://simen.ai/share/Q5p3VqSaP5" />

<Frame caption="Walter is recognizing weight loss check-in sheets and generating line charts">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-310.mp4" />
</Frame>

## Journal Enthusiast｜Batch Summary of Handwritten Daily Accounting Sheets

<PromptBlock title="Accounting Sheet Summary" prompt="These images are handwritten accounting sheets, please summarize the content of these images into an excel table, keeping columns for date, item and expense. Sort by time column" link="https://simen.ai/share/2swQS4H3o4" />

<Frame caption="Walter is recognizing handwritten accounting sheets">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-311.mp4" />
</Frame>

## University Staff｜Digitalizing Bulletin Board Office Distribution Charts

<PromptBlock title="Bulletin Board Chart Digitalization" prompt="This is an office distribution chart containing different college office distributions, please convert the image content into an editable excel table, sorted from 1st floor to 5th floor. Also classify by different colleges. First column header is college, second column is office name, third column is specific office number. Remember to merge cells for offices of the same college" link="https://simen.ai/share/luhxuoWM3s" />

<Frame caption="Walter is recognizing bulletin boards">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-312.mp4" />
</Frame>

## Bubble Tea Shop Entrepreneur｜Creating Electronic Version of Bubble Tea Shop Price List

<PromptBlock title="Bubble Tea Price List Digitalization" prompt="This is a bubble tea shop price list, convert it into all product price names, the table must contain the following information, save as excel: product name, category, model, price, notes" link="https://simen.ai/share/5SmjEp9ElU" />

<Frame caption="Walter is recognizing bubble tea prices">
  <video autoPlay muted loop playsInline controls className="w-full aspect-video rounded-xl" src="http://mini.file.simen.site/upload/docs/bonnie-chart-case-313.mp4" />
</Frame>
