Tools paling underrated yang dipakai 99% bisnis di dunia. Master pivot table, lookup functions, conditional logic, dan automation untuk produktivitas BA 10×.
Walau ada Python, BI tools, dan AI — Excel tetap dipakai dari startup sampai Fortune 500. Reason: everyone has it, formula language reusable, ad-hoc analysis super cepat. BA yang ngga jago Excel = kalah dari awal.
Google Sheets = alternatif gratis dengan 90% fitur Excel + collaboration realtime + scriptable lewat Apps Script. Pilih sesuai team standard.
=VLOOKUP(lookup_value, table, col_index, [exact_match])// Cari "John" di kolom A, return nilai di kolom 3=VLOOKUP("John", A:C, 3, FALSE)
=XLOOKUP(lookup, lookup_array, return_array, [if_not_found])// More flexible than VLOOKUP, support left lookup=XLOOKUP("Jakarta", B:B, A:A, "Not Found")
=INDEX(return_range, MATCH(lookup_value, lookup_range, 0))// Lebih powerful & efisien dari VLOOKUP. Bisa lookup ke kiri.
=SUMIFS(sum_range, criteria_range1, criteria1, ...)=SUMIFS(C:C, A:A, "Indonesia", B:B, ">100")// Sum kolom C dimana A=Indonesia DAN B>100
=IF(condition, value_if_true, value_if_false)=IFS(A1>100, "Tinggi", A1>50, "Sedang", TRUE, "Rendah")
Drag column ke Rows, drag metric ke Values, pilih agregasi. Selesai. Pivot table reduce 1-jam analysis jadi 5 menit. Wajib hafal: filter, slicer, calculated field.
=TRIM(A1) // hilangkan spasi extra=UPPER(A1) / LOWER(A1) // ubah case=PROPER(A1) // Title Case=SUBSTITUTE(A1, "old", "new") // replace=LEFT(A1, 5) / RIGHT(A1, 3) / MID(A1, 2, 4)
=TODAY() / NOW()=YEAR(A1) / MONTH(A1) / DAY(A1)=DATEDIF(start, end, "d") // days difference=EOMONTH(A1, 0) // last day of month
Excel punya tools bawaan untuk ETL: Power Query. Import dari banyak source (CSV, DB, web), transform dengan UI no-code, refresh otomatis. Hemat ribuan jam vs manual cleaning. Akses dari Data → Get Data.
| Tipe | Pakai untuk |
|---|---|
| Bar / Column | Bandingkan kategori |
| Line | Tren waktu |
| Combo | 2 metric beda skala (revenue & growth %) |
| Waterfall | Breakdown variance (mis. budget vs actual) |
| Funnel | Conversion drop per step |
| Sparklines | Mini chart in cell — perfect for dashboard |
| Sankey | Flow visualization (Excel 2016+) |
Ctrl + Shift + L: toggle filter. Alt + N + V: insert pivot. Ctrl + T: ubah jadi table. F4: repeat last action / absolute reference. Ctrl + Shift + ↓: select to bottom. Ctrl + ;: insert today date. Alt + =: AutoSum.
Untuk task repetitive: VBA (Excel) atau Apps Script (Google Sheets). Bahkan basic recording = automasi laporan mingguan jadi 1 klik.