Excel to RDF Converter
Convert Excel to RDF (Resource Description Framework) format
Excel Input
Upload Excel File
Click to browse or drag and drop
Supports .xlsx and .xls files
Convert Excel to other formats
RDF Output
Convert other formats to RDF
Related Tools
Excel to Jira
Convert Excel to Jira table markup format
Excel to HTML
Convert Excel to HTML table with styling options
Excel to INI
Convert Excel to INI configuration file format
Excel to JPEG
Convert Excel table to JPEG image with customizable styling
Excel to JSON Lines
Convert Excel to JSON Lines (JSONL) format
Excel to LaTeX
Convert Excel to LaTeX table format with booktabs
About the Excel to RDF Converter
This powerful Excel to RDF converter transforms spreadsheet data into RDF (Resource Description Framework) for the semantic web. Upload an Excel workbook and generate clean RDF in Turtle, RDF/XML, or JSON-LD format with proper namespaces, datatypes, and resource URIs.
Key Features & Benefits
- Multiple RDF formats: Export your Excel data as Turtle (
.ttl), RDF/XML (.rdf), or JSON-LD (.jsonld). - Configurable namespaces: Set your own base resource namespace and predicate/property namespace for clean URIs.
- Automatic datatype detection: Detects integers, decimals, booleans, dates, and dateTime values and
annotates them with the correct
xsd:datatype. - Subject identifier column: Choose which Excel column identifies resources (e.g., ID, URI) or let the tool auto-generate URIs per row.
- Supports multiple sheets: Select which sheet to convert when your Excel file contains several tables.
- Downloadable RDF files: Copy to clipboard or download the generated RDF in your preferred format.
How to Convert Excel to RDF
- Upload your Excel file: Drag and drop or select an
.xlsxor.xlsworkbook. - Pick the sheet: If your file has multiple sheets, choose the sheet you want to convert to RDF.
- Set header and subject options: Confirm whether the first row is a header and optionally select a column to serve as the subject identifier.
- Configure RDF settings: Choose the output format (Turtle, RDF/XML, JSON-LD), base namespace, predicate namespace, and resource type IRI.
- Review the RDF output: The tool builds triples for each row and column, applying appropriate datatypes and URIs.
- Copy or download: Copy the RDF to your clipboard or download it as a file to import into triple stores or knowledge graphs.
Example: Excel to RDF (Turtle)
Consider an Excel table with columns:
- id
- name
- age
- website
For a row like person-001, John Doe, 28, https://example.com/john, a simplified Turtle snippet might look like:
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix prop: <http://example.com/property/> .
<http://example.com/resource/person-001>
rdf:type <http://schema.org/Person> ;
prop:name "John Doe" ;
prop:age "28"^^xsd:integer ;
prop:website <https://example.com/john> . You can load this RDF into Jena, RDF4J, Blazegraph, or any SPARQL-enabled triple store.
When to Use the Excel to RDF Tool
- Knowledge graph projects: Convert tabular business data into RDF triples for knowledge graphs and linked data applications.
- Data integration: Harmonize Excel data from multiple systems into a standards-based RDF model.
- Open data publishing: Publish government, research, or enterprise data sets as RDF for public reuse.
- Prototyping semantic models: Experiment with ontologies and vocabulary mappings using simple Excel sheets.
FAQ: Excel to RDF
Is the Excel to RDF converter free?
Yes. The Excel to RDF tool is completely free to use and does not require registration.
Which RDF formats are supported?
You can export RDF as Turtle, RDF/XML, or JSON-LD. Choose the format that best matches your tooling and workflows.
How are datatypes assigned?
The converter inspects each cell value to detect numbers, booleans, dates (xsd:date), and dateTime values
(xsd:dateTime). Other values are treated as plain strings.
Can I control the subject URIs?
Yes. You can select a specific column (such as an ID or URI column) to build subject IRIs. If you leave it on auto, the tool creates URIs based on the row number.
Does my Excel data leave the browser?
No. All Excel to RDF conversions happen locally in your browser. Your spreadsheets are not uploaded to any remote server, which helps protect sensitive data.
