Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How I export my Firebase data in Excel Sheet

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:

Firebase Database

And this is how I want the Excel Sheet to look:

Excel Sheet

like image 372
Cycl0n3 Avatar asked Apr 14 '17 16:04

Cycl0n3


2 Answers

Export your firebase to JSON. Just click the settings on the right of your database.

enter image description here

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.

like image 140
tingyik90 Avatar answered Sep 29 '22 18:09

tingyik90


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.

like image 24
Arjan Poudel Avatar answered Sep 29 '22 16:09

Arjan Poudel