Tips
- Use https://sheet.new/ for creating a new sheet
- If it is not very private at-least make it readable, commentable, editable by anybody who has access to the link.
- Create a revision of the file at a point where you want to preserve it. Use named revisions
- If you are working with numbers,
- always use a pivot table
- Pivot table gives you a good summary of the aggregates
- Use column summaries to get insights
- always use a pivot table
- Use pandas to get some basic insights using data-EDA
- Recommendations
Sorting a range by two columns
Filter
=TRANSPOSE(FILTER(villagedata!1:1),villagedata!1:1<>"" )
TODO
- Convert spreadsheet to json.
Conditional Formatting
To format an entire row based on the value of one of the cells in that row: Source - https://support.google.com/docs/answer/78413
- On your computer, open a spreadsheet in Google Sheets.
- Select the range you want to format, for example, columns A:E.
- Click Format Conditional formatting.
- Under the "Format cells if" drop-down menu, click Custom formula is. If there's already a rule, click it or Add new rule Custom formula is.
- Write the rule for the first row. For example, if you want to make the whole row green if the value in column B is "Yes", write a formula like
=$B1="Yes"
- Choose other formatting properties.
- Click Done.
https://www.benlcollins.com/spreadsheets/conditional-formatting-entire-row/