Skip to content

Parse and Analyze Excel Spreadsheets

Parse an Excel spreadsheet to markdown with LlamaParse and build a mini RAG app over the table data using LlamaIndex and OpenAI.

In this example, learn how to use Parse on Excel spreadsheets, and (optionally) use that as the basis for a RAG app that can answer questions about the data within the table.

For this example, we’ll be using a simple DCF template, which you can download here. Once you do, rename the file to dcf_template.xlsx.

Example Spreadsheet

At the end of this example, we will create a mini RAG app with LlamaIndex framework that can answer questions, using OpenAI. You can skip this part, or use another model provider. That final step uses Python.

You’ll need a LlamaCloud API key. Set it as an environment variable so the SDKs pick it up automatically:

Terminal window
export LLAMA_CLOUD_API_KEY="llx-..."

Install the SDK and construct a client:

Terminal window
pip install "llama-cloud>=2.8"
from llama_cloud import LlamaCloud
client = LlamaCloud() # reads LLAMA_CLOUD_API_KEY from the environment

Upload the spreadsheet, parse it with the agentic tier (a strong default for table-heavy documents), and request the per-page markdown. The DCF template’s main table lives on the second sheet, so we read page index 1.

file = client.files.create(file="dcf_template.xlsx", purpose="parse")
result = client.parsing.parse(
file_id=file.id,
tier="agentic",
version="latest",
expand=["markdown"],
)
# Print the markdown for the second sheet/page
print(result.markdown.pages[1].markdown)

The SDK handles job polling for you—client.parsing.parse() blocks until the job finishes and returns the full result.

Expected output:

Discounted Cash Flow Excel Template
Here is a simple discounted cash flow excel template for estimating your company value based on this income valuation approach
Instructions:
1) Fill out the two assumptions in yellow highlight
2) Fill in either the 5 year or 3 year weighted average figures in yellow highlight
Assumptions
Tax Rate20%
Discount Rate15%
5 Year Weighted Moving Average
Indication of Company Value$242,995.43
3 Year Weighted Moving Average
Indication of Company Value$158,651.07
5 Year Weighted Moving Average
Past YearsForecasted Future Years
Year 1Year 2Year 3Year 4Year 5Year 6Year 7Year 8Year 9Year 10Terminal Value
Pre-tax income50,000.0055,000.0045,000.0052,000.0060,000.00
Income Taxes10,000.0011,000.009,000.0010,400.0012,000.00
Net Income40,000.0044,000.0036,000.0041,600.0048,000.00
Depreciation Expense5,000.004,000.003,000.002,000.001,000.00
Capital Expenditures10,000.008,000.005,000.005,000.007,000.00
Debt Repayments5,000.005,000.005,000.005,000.005,000.00
Net Cash Flow20,000.0027,000.0023,000.0029,600.0035,000.0029,093.3329,817.7830,177.4830,469.2330,379.74287,188.00
Discounting Factor0.86960.75610.65750.57180.49720.4972
Present Value of Future Cash Flow25,298.5522,546.5219,842.1817,420.8815,104.10142,783.19
3 Year Weighted Moving Average
Past YearsForecasted Future Years
Year 1Year 2Year 3Year 4Year 5Year 6Terminal Value
Pre-tax income50,000.0055,000.0045,000.00
Income Taxes10,000.0011,000.009,000.00
Net Income40,000.0044,000.0036,000.00
Depreciation Expense5,000.004,000.003,000.00
Capital Expenditures10,000.008,000.005,000.00
Debt Repayments5,000.005,000.005,000.00
Net Cash Flow20,000.0027,000.0023,000.0023,833.3324,083.3323,819.44158,253.59
Discounting Factor0.86960.75610.65750.6575
Present Value of Future Cash Flow20,724.6418,210.4615,661.67104,054.30
Notes:
-We based this simple discounted cash flow excel model based on the weighted moving averages (5 year or 3 year) for simplicity, in case a constant growth rate cannot be easily determined.
-The factors such as Depreciation Expense, Capital Expense and Debt Repayments remain constant, so consider this when looking at the forecasted figures.
-For the terminal value constant growth rate, we make the assumption of the growth from the last forecasted year compared to the first forecasted year. Adjust in the formula as needed.

The steps above work from any SDK. The optional RAG walkthrough below uses Python with LlamaIndex and OpenAI to answer questions based on the context provided by the parsed spreadsheet.

Install the extra dependency and set your OpenAI key:

Terminal window
pip install llama-index-llms-openai
export OPENAI_API_KEY="sk-..."

Configure an LLM. In this case, we are using gpt-5-mini:

from llama_index.llms.openai import OpenAI
llm = OpenAI(model="gpt-5-mini")

The easiest way to do this is to augment a prompt with the contents of the parsed spreadsheet:

from llama_index.core.llms import ChatMessage
llama_parse_documents = result.markdown.pages
query_str = "Tell me about the income taxes in the past years (year 3-5) for the 5 year WMA table"
context = "\n\n".join([doc.markdown for doc in llama_parse_documents])
messages = [
ChatMessage(
role="user",
content=f"Here is some context\n<context>{context}</context>\n\nAnswer the following question: {query_str}",
)
]
response = llm.chat(messages)
print(response.message.content)

Expected output:

In the 5‑year WMA table the income tax amounts for past years 3–5 are:
- Year 3: $9,000.00
- Year 4: $10,400.00
- Year 5: $12,000.00
These equal 20% of the respective pre‑tax incomes (45,000; 52,000; 60,000), consistent with the 20% tax rate assumption. The taxes rise each year as pre‑tax income increases.
Note for AI agents: this documentation is built for programmatic access. - Overview of all docs: https://developers.llamaindex.ai/llms.txt - Any page is available as raw Markdown by appending index.md to its URL — e.g. https://developers.llamaindex.ai/llamaparse/parse/getting_started/index.md - Agent-friendly REST search APIs live under https://developers.llamaindex.ai/api/ — search (BM25 full-text), grep (regex), read (fetch a page), and list (browse the doc tree). See https://developers.llamaindex.ai/llms.txt for parameters. - A hosted documentation MCP server is available at https://developers.llamaindex.ai/mcp. If you support MCP, you can ask the user to install it for browsing these docs directly (an alternative to the REST API). Setup: https://developers.llamaindex.ai/for-agents/mcp/ - Other LlamaIndex tooling for agents — the LlamaParse Platform MCP server, agent skills and plugins, and the n8n node — is mapped at https://developers.llamaindex.ai/for-agents/