Excel Copilot 프롬프트 패턴 20 — 요약·분류·포뮬러·인사이트 템플릿 (5 Shots)

Excel Copilot 프롬프트 패턴 20 — 요약·분류·포뮬러·인사이트 템플릿 (5 Shots)

Copilot은 Excel의 데이터를 요약·분류하고, =COPILOT 함수/패널로 수식 제안과 인사이트 도출을 도와줍니다. 사용 전 파일은 OneDrive/SharePoint에 저장하고 AutoSave를 켜며, 데이터는 테이블/지원 범위 형식이어야 합니다. 조직 사용자는 EDP(Enterprise Data Protection) 정책을 확인하세요. :contentReference[oaicite:6]{index=6}

요약 정리

항목핵심
프레임워크목표 + 컨텍스트 + 기대치 + 소스(데이터/범위)로 작성. :contentReference[oaicite:7]{index=7}
=COPILOT 팁테이블 참조·스필 지원, 다른 수식과 조합 가능(IF/LAMBDA 등). :contentReference[oaicite:8]{index=8}
준비물AutoSave ON, 테이블/지원 범위, 권한/EDP 점검. :contentReference[oaicite:9]{index=9}
오류 대응#CONNECT/#VALUE 등 오류 메시지에 맞춰 프롬프트 단순화/범위 축소. :contentReference[oaicite:10]{index=10}

Shot 1 — 환경 세팅(필수 체크)

  • 파일: OneDrive/SharePoint 저장 + AutoSave ON. :contentReference[oaicite:11]{index=11}
  • 데이터: 테이블 변환(머리글 고유/병합 없음/빈행 제거). :contentReference[oaicite:12]{index=12}
  • 권한·보안: 상업 고객 데이터는 MS 365 경계 내에서 처리·암호화·테넌트 분리. :contentReference[oaicite:13]{index=13}

Power Query 입문로 테이블 정리/ETL을 먼저 표준화하면 Copilot 성능과 재현성이 좋아집니다.

Shot 2 — 프롬프트 4요소 프레임워크

  1. Goal(목표): “반품 사유 5그룹으로 단일 열에 분류”.
  2. Context(컨텍스트): “Orders[Return_Reason] 텍스트, 2~10단어”.
  3. Expectation(기대치): “그룹 라벨은 Params[Category] 값만 사용”.
  4. Source(소스): 참조 범위를 명시(테이블/열). :contentReference[oaicite:14]{index=14}

XLOOKUP 가이드·인쇄/보고서 설정도 함께 참고.

Shot 3 — 패턴 1–8 (요약·분류·포맷팅)

요약(Summary) 1–4

  1. =COPILOT("Summarize in 3 bullets, focus on logistics delays:", Orders[Return_Reason])
  2. =COPILOT("Create a one-paragraph weekly summary for management.", Orders[Return_Reason])
  3. =COPILOT("Extract top 5 themes with counts, return as two-column table (Theme, Count).", Orders[Return_Reason])
  4. =COPILOT("Rewrite this as a KPI note under 100 words, neutral tone.", Notes[Text])

분류(Classification) 5–8

  1. =COPILOT("Classify each reason using only these labels:", Orders[Return_Reason], "Labels:", Params[Category])
  2. =COPILOT("Tag each SKU as A/B/C based on examples:", Facts[Sales], "Examples:", Guide[ABC])
  3. =COPILOT("Detect sentiment as Positive/Neutral/Negative", CSAT[Comment])
  4. =COPILOT("Map courier names to standardized values", Ship[Carrier])

※ 결과는 스필 배열로 확장될 수 있음. :contentReference[oaicite:15]{index=15}

Shot 4 — 패턴 9–15 (포뮬러·변환)

Copilot은 새 열/행 수식을 생성해 테이블에 채울 수 있고, 기존 수식과 조합할 수 있습니다. :contentReference[oaicite:16]{index=16}

  1. =COPILOT("Propose a formula to extract 3-char SKU prefix", Orders[SKU]) → 검토 후 LEFT([@SKU],3) 적용
  2. =COPILOT("Generate a formula to split 'City, State' into two columns", Addr[CityState]) (대안: TEXTBEFORE/TEXTAFTER)
  3. =COPILOT("Give a single-cell formula to count unique SKUs", Orders[SKU]) (대안: COUNTA(UNIQUE(...)))
  4. =COPILOT("Normalize date text to yyyy-mm-dd", Raw[DateText]) (대안: DATEVALUE)
  5. =COPILOT("Create formula to flag late shipments (ship_date - order_date > 2)", Orders[[Order_Date]:[Ship_Date]])
  6. =COPILOT("Return a WRAPROWS table with top 10 SKUs and counts", Orders[SKU])
  7. =COPILOT("Draft a LAMBDA that standardizes courier names", Ship[Carrier])

Shot 5 — 패턴 16–20 (인사이트·KPI·품질/오류 대응)

  1. =COPILOT("Explain which 3 features best predict returns; suggest columns to engineer", Orders[[Qty]:[Return_Reason]])
  2. =COPILOT("Propose weekly KPI bullets for OTD, Return Rate, CSAT under 80 words", KPI[Notes])
  3. =COPILOT("Draft a short 'What changed vs last week?' summary", Weekly[Metrics])
  4. =COPILOT("List data quality issues found in this table (duplicates, blanks, mixed types)", Orders[#All])
  5. =COPILOT("If #CONNECT or #VALUE occurs, suggest how to simplify/resize prompt to resolve", Help[Msg]) — 참조: 오류 가이드. :contentReference[oaicite:17]{index=17}

민감 문서/정확·재현 필수 지표는 Copilot 제안 내용을 사람 검토→네이티브 수식/Power Query로 재현하세요. :contentReference[oaicite:18]{index=18}

현업 배포용 1페이지

  • 프레임: 목표·컨텍스트·기대치·소스(표현은 짧고 구체적으로). :contentReference[oaicite:19]{index=19}
  • 세팅: AutoSave·테이블·권한/EDP·샘플검증. :contentReference[oaicite:20]{index=20}
  • 패턴 20: 요약4·분류4·포뮬러7·인사이트5(복붙 가이드).
  • 오류: #CONNECT, #VALUE → 프롬프트 단순화/범위 축소/문서 크기 감축. :contentReference[oaicite:21]{index=21}

메모: =COPILOT은 Insider/Beta부터 순차 제공되며(Windows 2509+/Mac 16.101+ 공지), 기존 수식과 함께 사용할 수 있습니다. :contentReference[oaicite:22]{index=22}

Leave a Reply

Your email address will not be published. Required fields are marked *