This is the quick problem/solution index. Start with the accounting task you recognize, then jump to the relevant PANDAUDIT guide.
Lookups, joins, and reconciliations
Cleaning messy exports
How do I clean negative numbers exported like 1,234.56- or 1,234CR?
Normalize the text first, move the sign to the front, then convert to a number.
How do I extract dollar amounts from descriptions?
Use string methods and regular expressions to pull numbers out of text.
How do I clean inconsistent account/vendor names?
Standardize case, whitespace, punctuation, and known abbreviations before comparing.
Summaries and reporting
How do I replace a Pivot Table?
Use pivot_table for spreadsheet-style summaries and groupby for programmatic summaries.
How do I create monthly or fiscal-year summaries?
Convert dates once, add a period/fiscal column, then group by it.
How do I export a clean Excel workbook with multiple tabs?
Use ExcelWriter and write each output table to its own sheet.
Quality checks and audit-style testing
How do I find duplicates without losing the details?
Use duplicated(keep=False) to show every row involved in duplicate groups.
How do I spot unusual transactions?
Start with round numbers, weekends, outliers, and missing master-data matches.
Have a recipe request?
Bring a sanitized version of your spreadsheet problem to the PANDAUDIT Discord. The best new questions become future recipes.