Reputation: 697
I want my Firebase database in Excel sheets. I have all these children: Names
, Branch
, Batch
, College
as attributes of all users. I want to export these in Excel Sheets.
Here's an example of items in the database:
And this is how I want the Excel Sheet to look:
Upvotes: 18
Views: 45359
Reputation: 887
All the answers here are mentioning online converter tools. You can also use Excel's built-in data importer. I found it useful when I have to export it in a excel table.
Say I have the following data:
Similar like other answers, click the triple dot > Export JSON..
Then, open Excel. Go to Data > Get Data > From File... > From JSON
Then, click on Into Table
Click, Close and Load
Result:
Upvotes: 0
Reputation: 1865
I would like to explain more Since its unclear to some people.
Step 1. Select Realtime Database (You won't find any download button in Cloud Firestore). for that, Select Database > Realtime Database
Step 2. In there, you'll find a three-dotted button in the right top corner. Select your option (Import/ Export)
Upvotes: 3
Reputation: 11
In the firebase database, you can see export to JSON file, When you export it download it and then use an online converter to change to excel file.
Upvotes: 1
Reputation: 1711
Export your firebase to JSON. Just click the settings on the right of your database.
Then, convert the JSON to CSV. There are a lot of csv converter online. You can try https://json-csv.com/. Save the csv and open with Excel.
Upvotes: 40