Home New › Forums › discussions › ProjectLibre Desktop › Export to Excel or CSV
- This topic has 4 replies, 4 voices, and was last updated 5 months ago by
Binisha Thapa Magar.
-
AuthorPosts
-
-
August 5, 2025 at 5:20 pm #3834
Ed CsukasParticipantIs it possible? Please point me to directions.
I don’t find very good instructions anywhere.
I have 1.9.3 -
August 7, 2025 at 2:05 pm #3842
Project_LibreKeymasterYes, you can do a Save As and select the .xml format. You can open a .xml file in Excel
-
August 7, 2025 at 2:28 pm #3844
Ed CsukasParticipantI tried that. The options you get are to choose between:
As an XML table
As a read-only workbook
Use the XML Source task paneEvery one of these options requires more work than is worth the time to do.
There must be a better way.
-
September 8, 2025 at 6:48 am #4427
Barnaby DaviesParticipantYou can copy and paste from the table but this isn’t very nice. I couldn’t get the xml import to Excel working even when using PowerQuery – it only imports the top row. Surely export to CSV is the way forward here.
-
December 5, 2025 at 3:25 am #6336
Binisha Thapa MagarParticipantimport pandas as pd
# Create Gantt task data
data = {
“ID”: list(range(1, 26)),
“Task Name”: [
“Project kickoff meeting”,
“Requirement gathering”,
“Define system features (9 features)”,
“Create project scope draft”,
“Design ERD (Mermaid code)”,
“Create SQL structure (7 tables)”,
“Review & validate DB design”,
“Create homepage UI”,
“Task management UI”,
“Calendar view UI”,
“Reminders & progress UI”,
“Implement login system”,
“Connect UI to database”,
“Implement task CRUD operations”,
“Implement scheduling + reminders”,
“Implement progress tracking”,
“Functional testing”,
“Fix bugs and refine UI”,
“Write Business Case”,
“Write Scope Statement”,
“Write Project Charter”,
“Insert diagrams & screenshots”,
“Prepare presentation slides”,
“Rehearse presentation”,
“Final submission”
],
“Duration”: [
“1d”,”2d”,”1d”,”1d”,”2d”,”2d”,”1d”,”2d”,”2d”,”2d”,”2d”,
“2d”,”2d”,”3d”,”3d”,”2d”,”3d”,”2d”,”2d”,”1d”,”1d”,”1d”,
“2d”,”1d”,”1d”
],
“Predecessor”: [
“”, “1”, “2”, “3”, “4”, “5”, “6”, “7”, “8”, “9”, “10”,
“11”,”12″,”13″,”14″,”15″,”16″,”17″,”18″,”19″,”20″,”21″,
“22”,”23″,”24″
]
}df = pd.DataFrame(data)
# Save CSV file
csv_path = “/mnt/data/Sajilo_Study_Planner_Gantt.csv”
df.to_csv(csv_path, index=False)csv_path
`
-
-
AuthorPosts
- You must be logged in to reply to this topic.