원클릭으로
excel-analysis
Master Excel for data analysis with pivot tables, formulas, Power Query, and advanced Excel techniques.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Master Excel for data analysis with pivot tables, formulas, Power Query, and advanced Excel techniques.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Master business documentation including BRD, FRD, specifications, and technical documentation for clear communication and requirements management.
Master process modeling with BPMN, flowcharts, swimlane diagrams, and process optimization techniques for business process improvement.
Master requirements gathering techniques including interviews, workshops, observation, and documentation for effective requirement elicitation.
Master use case development with actors, scenarios, preconditions, postconditions, and detailed specifications for comprehensive requirements.
Master data visualization with chart selection, dashboard design, Tableau, Power BI, and effective data storytelling.
Master SQL for data analysis with complex queries, joins, aggregations, window functions, and query optimization.
| name | excel-analysis |
| description | Master Excel for data analysis with pivot tables, formulas, Power Query, and advanced Excel techniques. |
Master Excel for data analysis using pivot tables, formulas, Power Query, and advanced features for business analytics.
## Sales Analysis Pivot Table
**Source Data**: Sales transactions (Date, Region, Product, Sales Rep, Amount)
**Pivot Table Setup**:
- Rows: Region, Sales Rep
- Columns: Month (Date grouped by month)
- Values: Sum of Amount
- Filters: Product, Date Range
**Calculated Fields**:
- Average Sale = Sum of Amount / Count of Transactions
- Target vs Actual = Sum of Amount - Target
- % of Total = Sum of Amount / Grand Total
**Formatting**:
- Currency format for amounts
- Percentage for % of Total
- Conditional formatting: Above/below average
# VLOOKUP - Lookup customer name from ID
=VLOOKUP(A2, Customers!A:B, 2, FALSE)
# SUMIFS - Sum sales for specific region and product
=SUMIFS(Sales, Region, "West", Product, "Widget")
# INDEX/MATCH - More flexible than VLOOKUP
=INDEX(Customers!B:B, MATCH(A2, Customers!A:A, 0))
# Array Formula - Count unique values
=SUM(1/COUNTIF(A2:A100, A2:A100))
# TEXTJOIN - Combine values with delimiter
=TEXTJOIN(", ", TRUE, A2:A10)
# IFS - Multiple conditions
=IFS(A2>90, "A", A2>80, "B", A2>70, "C", TRUE, "F")
# Date calculations
=EDATE(A2, 3) # Add 3 months
=NETWORKDAYS(A2, B2) # Business days between dates
## ETL with Power Query
**Transform Sales Data**:
1. Load data from CSV
2. Remove duplicates
3. Filter out cancelled orders
4. Split full name into first/last
5. Change date format
6. Group by customer, sum amounts
7. Add calculated column: Tier (based on total)
8. Load to Excel table
**M Code Example**:
```m
let
Source = Csv.Document(File.Contents("sales.csv")),
RemoveDuplicates = Table.Distinct(Source),
FilterCancelled = Table.SelectRows(RemoveDuplicates, each [Status] <> "Cancelled"),
SplitName = Table.SplitColumn(FilterCancelled, "Name", Splitter.SplitTextByDelimiter(" "), {"FirstName", "LastName"}),
GroupedRows = Table.Group(SplitName, {"CustomerID"}, {{"TotalSales", each List.Sum([Amount]), type number}}),
AddTier = Table.AddColumn(GroupedRows, "Tier", each if [TotalSales] > 10000 then "Gold" else if [TotalSales] > 5000 then "Silver" else "Bronze")
in
AddTier
## Best Practices
1. **Use tables** - Structured references, auto-expansion
2. **Name ranges** - Formulas more readable
3. **Avoid merged cells** - Breaks sorting, filtering
4. **Document assumptions** - Comments, separate tab
5. **Validate data** - Data validation rules
6. **Use shortcuts** - Ctrl+T (table), Alt+D+P (pivot)
7. **Power Query for ETL** - Repeatable transformations
8. **Version control** - Save versions, track changes
## Resources
- **Excel Jet**: Formula reference and tips
- **Mr. Excel**: Advanced Excel techniques