$npx -y skills add googleworkspace/cli --skill recipe-compare-sheet-tabsRead data from two tabs in a Google Sheet to compare and identify differences.
| 1 | # Compare Two Google Sheets Tabs |
| 2 | |
| 3 | > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets` |
| 4 | |
| 5 | Read data from two tabs in a Google Sheet to compare and identify differences. |
| 6 | |
| 7 | ## Steps |
| 8 | |
| 9 | 1. Read the first tab: `gws sheets +read --spreadsheet SHEET_ID --range "January!A1:D"` |
| 10 | 2. Read the second tab: `gws sheets +read --spreadsheet SHEET_ID --range "February!A1:D"` |
| 11 | 3. Compare the data and identify changes |