play icon for videos
← Academy
Strategy · Other

How to Map and Prioritize Stakeholders

Turn the one-time power/interest diagram into a living, prioritized record. Segment stakeholders, tier them with a reason, and give each a persistent Contact ID so the map redraws itself from current data.

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> *{box-sizing:border-box} body{margin:0;font-family:'Hanken Grotesk',-apple-system,BlinkMacSystemFont,sans-serif;background:#F7F4EC;padding:24px;display:flex;justify-content:center} .card{width:620px;max-width:100%;background:#FFFFFF;border:1px solid #EAE3D4;border-radius:20px;box-shadow:0 24px 60px -34px rgba(60,40,20,.34),0 2px 4px rgba(60,40,20,.05);overflow:hidden} .hdr{display:flex;align-items:center;gap:11px;padding:16px 20px;border-bottom:1px solid #EFE9DC;background:#F7F4EC} .hdr .t{min-width:0} .hdr .t .n{font-family:'Inter',Georgia,serif;font-weight:600;font-size:16px;color:#2A2115;letter-spacing:-.2px;line-height:1.2} .hdr .t .s{font-size:12px;color:#8A7C63;margin-top:2px} .hdr .pill{margin-left:auto;display:inline-flex;align-items:center;gap:6px;font-size:11.5px;font-weight:700;color:#C05B3F;background:#F5E4DE;padding:5px 11px;border-radius:20px;white-space:nowrap} .tabs{display:flex;gap:0;padding:12px 12px 0;background:#F7F4EC;flex-wrap:wrap} .tab{flex:1;min-width:88px;display:flex;flex-direction:column;align-items:center;gap:5px;cursor:pointer;font-family:inherit;font-size:11px;font-weight:700;color:#8A7C63;background:transparent;border:none;border-bottom:2px solid transparent;padding:8px 4px 10px} .tab.on{font-weight:800;color:#C05B3F;border-bottom-color:#C05B3F} .tab .num{display:inline-flex;width:20px;height:20px;align-items:center;justify-content:center;border-radius:50%;font-size:11px;font-weight:800;color:#8A7C63;background:#EFE9DC} .tab.on .num{color:#fff;background:#C05B3F} .divider{height:1px;background:#EFE9DC} .body{padding:20px} .eyebrow{font-size:10.5px;font-weight:800;letter-spacing:1.2px;text-transform:uppercase;color:#C05B3F;margin-bottom:6px} .headline{font-family:'Inter',Georgia,serif;font-size:18px;font-weight:600;line-height:1.28;color:#2A2115;margin-bottom:10px} .lede{font-size:12.5px;line-height:1.55;color:#5C5140;margin:0 0 14px} .promptlbl{font-size:10px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:#A99C82;margin-bottom:7px} .prompt{position:relative;font-family:ui-monospace,'SF Mono',Menlo,monospace;font-size:11px;line-height:1.55;color:#2A2115;background:#F7F4EC;border:1px solid #EFE9DC;border-left:3px solid #C05B3F;border-radius:10px;padding:12px 13px} .promptbar{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:10px} .copybtn{font-family:inherit;font-size:11.5px;font-weight:700;color:#2A2115;background:#EFE9DC;border:none;border-radius:8px;padding:7px 13px;cursor:pointer} .copybtn.done{color:#fff;background:#C05B3F} .demo{font-size:11.5px;font-weight:800;color:#C05B3F;text-decoration:none} </style> </head> <body> <div class="card"> <div class="hdr"> <div class="t"> <div class="n">How to map and prioritize stakeholders</div> <div class="s">Actionable in Sopact Sense on one persistent Contact ID</div> </div> <span class="pill">Sopact Sense</span> </div> <div class="tabs" id="tabs"></div> <div class="divider"></div> <div class="body" id="body"></div> </div> <script> (function(){ var TABS = ["Segment","Prioritize","Assign ID","Dedupe","Redraw"]; var CONTENT = [ {eyebrow:"Step 1 · Segment",headline:"Sort stakeholders into the groups you serve and fund.",lede:"Start from your list or program page. Ask the Assistant to segment stakeholders into the groups you serve and the groups you fund, so the map reflects your actual relationships.",prompt:"From this stakeholder list or program page [LIST OR URL], segment our stakeholders into the groups we serve and fund."}, {eyebrow:"Step 2 · Prioritize",headline:"Give each stakeholder a power/interest tier with a one-line reason.",lede:"Assign a priority tier (power/interest or influence/impact) to each stakeholder and require a one-line reason, so the ranking is defensible instead of a gut call.",prompt:"Propose a priority tier for each stakeholder (power/interest) with a one-line reason for each."}, {eyebrow:"Step 3 · Assign a persistent ID",headline:"Give every stakeholder a persistent unique ID at first contact.",lede:"A persistent Contact ID assigned at first contact is what lets the map redraw itself from current data instead of being rebuilt by hand each cycle.",prompt:"Assign every stakeholder a persistent unique ID at first contact so the map redraws itself from current data."}, {eyebrow:"Step 4 · Dedupe",headline:"Flag the same person under different names or emails.",lede:"Duplicates quietly break a map. Have the Assistant flag any stakeholder that appears more than once under a different name or email so you can merge to one record.",prompt:"Flag any stakeholder that appears more than once under different names or emails so we can merge to one record."}, {eyebrow:"Step 5 · Run it as one prompt",headline:"The full map-and-prioritize prompt.",lede:"Run all four steps in one pass. The map is a snapshot; the record it writes to is the asset that keeps updating.",prompt:"From this stakeholder list or program page [LIST OR URL], segment our stakeholders into the groups we serve and fund, propose a priority tier for each with a one-line reason, assign every stakeholder a persistent unique ID, and flag any that appear more than once under different names or emails so we can merge to one record."} ]; var phase = 0; var tabsEl = document.getElementById('tabs'); var bodyEl = document.getElementById('body'); function renderTabs(){ tabsEl.innerHTML=''; TABS.forEach(function(label,i){ var b=document.createElement('button'); b.type='button'; b.className='tab'+(i===phase?' on':''); b.innerHTML='<span class="num">'+(i+1)+'</span><span>'+label+'</span>'; b.addEventListener('click',function(){phase=i;render();}); tabsEl.appendChild(b); }); } function renderBody(){ var c=CONTENT[phase]; var out='<div class="eyebrow">'+c.eyebrow+'</div><div class="headline">'+c.headline+'</div><p class="lede">'+c.lede+'</p>'; out+='<div class="promptlbl">Copy-paste Sopact Assistant prompt</div>'; out+='<div class="prompt" id="promptTxt"></div>'; out+='<div class="promptbar"><button type="button" class="copybtn" id="copyBtn">Copy prompt</button><a class="demo" href="https://www.sopact.com/request-demo" target="_blank" rel="noopener">Request a demo &rarr;</a></div>'; bodyEl.innerHTML=out; document.getElementById('promptTxt').textContent=c.prompt; var btn=document.getElementById('copyBtn'); btn.addEventListener('click',function(){ var t=c.prompt; function done(){btn.textContent='Copied';btn.className='copybtn done';setTimeout(function(){btn.textContent='Copy prompt';btn.className='copybtn';},1600);} if(navigator.clipboard&&navigator.clipboard.writeText){navigator.clipboard.writeText(t).then(done,function(){fallback(t,done);});} else{fallback(t,done);} }); } function fallback(t,done){ var ta=document.createElement('textarea');ta.value=t;ta.style.position='fixed';ta.style.opacity='0'; document.body.appendChild(ta);ta.select();try{document.execCommand('copy');}catch(e){}document.body.removeChild(ta);done(); } function render(){renderTabs();renderBody();} render(); })(); </script> </body> </html>
Sopact Academy · Course review

Practical Academy guide

How to Map and Prioritize Stakeholders

Map stakeholders by identifying who is affected by a decision, who contributes evidence, who delivers the work and who has decision responsibility. Then choose an appropriate way to involve each group, with a reason, owner and review date. Influence matters, but it should not be the only basis for attention. A group with little formal power may be strongly affected and essential to understanding the work.

This lesson is for membership, network and partner teams planning collection and engagement. You will produce a stakeholder-and-collection map. The map describes how to listen and work together; it is not a ranking of people’s worth or a requirement to identify every individual.

  1. Name the decision and its scope.
  2. List affected groups, contributors, delivery roles and decision owners.
  3. Separate groups, organizations, representatives and people.
  4. Choose engagement based on impact, knowledge, responsibility and access.
  5. Assign collection routes, owners and a useful return.
  6. Review missing voices and maintain the map as relationships change.

Which decision are you mapping?

Start with a concrete decision, such as revising a network’s annual support plan. A map for that task may differ from a map for evaluating an event or coordinating supplier evidence. Avoid building a master list of everyone the organization knows before deciding what it is for.

Ask who experiences the consequences, who knows about delivery, who supplies data, who can act and who may be overlooked. A current contact database is a starting source, not a complete account of relevant voices. People who have not joined, left recently or cannot access existing channels may matter to the decision.

How do you distinguish the entities?

A member organization, its representative and the people attending its activities are different. Record the relationships rather than mixing them in one undifferentiated stakeholder list. A representative’s survey response may describe organizational activity, but it does not automatically represent every member’s personal experience.

EntityFictional network exampleCollection implication
Member organizationCedar AssociationAnnual activity return belongs to the organization and period.
RepresentativeCurrent nominated contactRecord who submitted the return and when their role applies.
Participant groupPeople attending a regional eventExperience feedback needs an appropriate participant route.
OrganizerLocal host teamOperational report may arrive as a file with its own source and period.

Use stable identifiers for continuing entities where identification serves the purpose. A group-level planning entry need not contain a list of named individuals. Review potential duplicate identities before merging; a shared name or email is not conclusive evidence.

How should you choose who needs attention?

Use several questions rather than a power score alone: how affected is the group, what relevant knowledge does it hold, what decision responsibility does it carry, and what barriers could prevent participation? Record the reason for the engagement choice.

A low-response member group may need an accessible collection route, not less attention because its apparent interest is low. A highly influential sponsor may need a formal review meeting, while participants need a suitable way to describe their experience. Those are different engagement tasks, not necessarily competing ranks.

If a priority tier helps manage staff time, define what it changes: urgency of contact, level of involvement or frequency of review. Do not make a tier an automatic reason to exclude affected people from evidence collection.

What should the collection map contain?

For each group, record the decision question, evidence needed, route, timing, owner and planned return. Allow local formats while agreeing the few core fields required for shared questions. Registration can supply stable profile context; recurring surveys and files capture changes and events.

GroupQuestionRouteReturn
Member organizationsWhich activities and support needs changed?Annual return with a small common core and local detail.Reviewed organization summary and appropriate network findings.
Event participantsWhat was useful or difficult?Accessible post-event feedback under a clear privacy promise.What the organizer will change and how to respond.
Local organizersWhat happened operationally?Existing report and supporting documents.Specific clarifications and a useful review of delivery.

This fictional map is a starting example, not a universal survey schedule. Add an ad hoc consultation or study where a separate question requires it. Do not make each new question another annual field by default.

How do you find missing voices?

Compare the map with the population affected by the decision. Ask local representatives who is absent and why, but do not assume one representative can answer for everyone. Review access, language, timing and previous response patterns.

Keep “not contacted,” “invited but no response,” and “represented through another source” distinct. None proves lack of interest. If some voices cannot be included in the current round, disclose the limitation and plan the next opportunity.

How does the map stay current?

Assign an owner and review it when roles, activities or decisions change. Preserve relevant relationship dates so a new representative does not inherit an earlier person’s statements. Update current profile fields while retaining history needed for comparison.

A diagram is one view of the underlying records. It does not maintain itself because identifiers exist. Decide which updates are automatic in the configured workflow and which require a person to review the relationship or engagement plan.

Where does Sopact fit?

You can begin with a table and source list. Sopact’s connected approach can keep recurring responses, organizational context and documents available together, using shared definitions for analysis. That helps the team revisit the map without rebuilding all the evidence from separate exports.

AI can suggest groups or questions from authorized material, but it cannot discover every missing voice from your existing contact list. People confirm the map, identity matches, access and engagement decisions. Test whether local context remains visible when summaries are prepared.

Practice: add the voice your list missed

Map one network decision using the example fields. Include a group affected by the decision that is absent from the current contact list. Write a suitable route to learn from it, who will arrange that route and what the group will receive in return. Explain why influence alone would have produced a weaker plan.

Frequently asked questions

Should high-power stakeholders always get most attention?

Not automatically. Consider affectedness, relevant knowledge, responsibility and barriers to participation as well as influence. Choose the engagement needed for the decision and document the reason.

Does every stakeholder need a personal record?

No. Some planning and feedback can remain at group or organization level. Use identified records only where they serve a justified purpose and appropriate access rules. Do not collect names merely to complete a map.

Can we merge duplicate-looking contacts automatically?

A possible duplicate needs a matching rule and review appropriate to the consequences. Shared names or inboxes may refer to different people. Preserve source identifiers and a correction path.

How does this connect to data collection?

The map determines whose evidence is needed, for which question, through which route and at what time. It also names the owner and useful return. That makes it an input to the collection plan rather than a diagram with no operational use.

Return to your course →

Put this guide into practice.

Start with a decision your team needs to make. Decide what information belongs together, how you will check it, and who is responsible for acting.

See context in action →
Prepare data governance before using AI
Prepare your data governance
nonprofit-data-governance-before-ai
Feedback
Foundation
Prepare an evidence register and a tested governance baseline before applying AI to program data.
Make learning part of the work you already do
The Loop — the method in one read
the-loop
Loop
The method
0
One continuous method for reliable, traceable AI reporting across case, application, grant, and program workflows: collect clean, analyze on arrival, and improve in time.
Teams running cases, applications, grants, or programs that need AI-assisted reporting they can reproduce, trace to source evidence, and act on before the cycle ends.
What Is Case Intelligence?
What Is Case Intelligence?
what-is-case-intelligence
Case
Foundation
1
One current, traceable record for each person—connecting intake, services, notes, surveys, documents, outcomes, decisions, and follow-up.
Workforce and training · Youth and mentoring · Case management · Scholarships · Accelerators · Education · Nonprofit programs
What Is Grant Intelligence?
What Is Grant Intelligence?
what-is-grant-intelligence
Grant
Foundation
1
One connected evidence record from application and committee review through the awarded grant, grantee reporting, renewal, and board accountability.
Foundations and grantmakers · Public grant programs · Scholarships and fellowships · Accelerators
What Is Portfolio Intelligence?
What Is Portfolio Intelligence?
what-is-portfolio-intelligence
Portfolio
Strategy
1
A source-linked portfolio view that connects each investee or grantee's agreed plan, reporting cadence, evidence, risks, and results.
Impact funds and investors · Foundations with grant portfolios · Family offices · Blended-finance vehicles
What Is Connected Data Intelligence?
What Is Connected Data Intelligence?
connected-data-intelligence
Feedback
Foundation
1
Keep evidence from surveys, files, notes, documents, systems, sites, and reporting periods connected to one continuing record.
Multi-program nonprofits · Member and chapter networks · Research associations · Training and coaching teams · Organizations with scattered evidence
Build an impact report from evidence you can explain
What Is Impact Measurement and Reporting?
embedded-impact-measurement
Reporting
Align
1
Define intended change, align organization and funder context, govern measures, interpret evidence, and produce traceable reports for decisions.
Program and impact teams · MEL leads · Funders and donors · Foundations · Impact funds · Organizations building rigorous impact reports
Build a repeatable collect, review and improve cycle
Methodology — continuous, not annual
loop-methodology
Loop
The method
1
The continuous collect–analyze–improve cycle, adopted as an experiment: start with the step that already pays and add one data-collection step at a time.
Teams tired of rebuilding spreadsheets and forms who want a measurement system that compounds instead of resetting.
How to Build a Theory of Change with AI: Prompts and Examples
Build a Theory of Change You Can Test
how-to-build-a-theory-of-change
Reporting
Align
2
How Do You Onboard a Portfolio and Track Results?
Agree the Portfolio Reporting Plan
onboard-portfolio-lock-impact-agreement-track-results
Portfolio
Data Dictionary
2
Test whether an AI-assisted result is repeatable and correct
Reliability — the same answer twice
loop-reliability
Loop
The method
2
Determinism as a feature: the same question over the same data returns the same answer every run — the opposite of a generic AI chat that drifts.
Anyone who has watched a general AI tool give two different numbers for the same question and needs results they can stand behind.
Design application intake around a defensible decision
Design an Application Process
how-to-design-an-application-process
Grant
Foundation
2
How to Structure Stakeholder Data: Four Common Patterns
Choose your record structure
which-shape-is-your-data
Feedback
Foundation
2
Map the people, observations and relationships your workflow needs before collecting data.
How to Build a Logic Model: Steps, Example and AI Prompt
Build a Logic Model You Can Use
how-to-build-a-logic-model
Reporting
Align
3
How Do You Onboard a Grant or RFP Program?
Onboard a Grant or RFP Program
how-to-onboard-a-grant-rfp-program
Grant
Foundation
3
Turn your theory of change into a data-collection plan
Turn a Theory of Change into a Data-Collection Workflow
theory-of-change-to-data-collection-workflow
Case
Foundation
3
Build a portfolio data dictionary without forcing false comparisons
Map Portfolio Data to Reporting Standards
portfolio-data-dictionary-standards-mapping
Portfolio
Chapters
3
Keep a clear trail from a finding to its evidence
Traceability & Transparency
loop-traceability
Loop
The method
3
Every figure links back to the exact response, note, or document it came from — a full audit trail from headline result to raw evidence.
Teams whose numbers get scrutinized — by funders, boards, auditors, or standards — and who need to answer where did this come from on the spot.
How to Change Survey Questions Without Losing Comparability
Change questions with a clear history
change-questions-without-breaking-the-record
Feedback
Control
3
Create a question-change log and decide how old and new versions should appear in reports.
Programme & MEL leads · Teams whose questionnaire has ossified · Anyone evaluating a platform where configuration is a purchased service
Five Dimensions of Impact: How to Review Your Evidence
Use the Five Dimensions to Test the Evidence
five-dimensions-of-impact
Reporting
Align
4
How Do You Design a Grant Rubric and Eligibility Rules?
Design Your Rubric & Eligibility Rules
grant-rubric-eligibility-rules
Grant
Foundation
4
How to Measure Outcomes Across an Investment or Grant Portfolio
Frame Outcomes Over Outputs at Portfolio Level
frame-outcomes-portfolio-level
Portfolio
Chapters
4
Adapt the learning cycle to your workflow
Flexibility — one method, four workflows
loop-flexibility
Loop
The method
4
The same collect–analyze–improve cycle, shaped to four kinds of impact work — case, grant, portfolio, and feedback — each shown end to end.
Anyone deciding where the Loop fits their work, who wants to see the full path from messy input to a report they can defend.
How to Collect Feedback Offline and Keep Records Connected
Collect offline and reconcile the batch
collect-feedback-offline
Feedback
Connect
4
Build a field protocol and reconcile a test batch across devices, visits and delayed uploads.
Field & multi-site programs · Low-connectivity contexts · Nonprofits collecting in person
How Do You Design an Intake Form for a Baseline?
Design an Intake Form That Captures a Usable Baseline
intake-form-usable-baseline
Case
Nonprofit Track
5
Turn a proposed outcome into a reporting definition
Outcomes vs Outputs
frame-outcomes-over-outputs
Grant
Foundation
5
Impact Due Diligence: Review Evidence Before Investment
Pre-Investment Due Diligence & Screening
pre-investment-due-diligence-screening
Portfolio
Chapters
5
Plan and review your first workflow pilot
The Guarantee — first workflow in 2 months
loop-guarantee
Loop
The method
5
How to Build an Organization Evidence Model
Build the Organization Evidence Model
build-organization-evidence-model
Reporting
Align
5
How to Analyze Documents as Evidence: Sources, Context and Review
Read documents as traceable evidence
read-documents-as-evidence
Feedback
Connect
5
Create a document register and reviewed findings with source locations, context and explicit exceptions.
How to Clean Open-Ended Survey Responses Without Losing Meaning
Clean responses and define the denominator
clean-open-ended-survey-responses
Feedback
Clean
6
Create a cleaning log, response-status table and reproducible report statement.
How to Review Participant Support Needs Mid-Program
Spot At-Risk Participants Mid-Program
spot-at-risk-participants-mid-program
Case
Nonprofit Track
6
How to Write a Nonprofit Grant Application: Template and Example
Grant Application for Nonprofits
grant-application-for-nonprofit-organizations
Grant
Foundation
6
Design quarterly portfolio reporting that investees can complete
Collect Investee Reporting Without Repeated Rework
collect-investee-reporting-without-burden
Portfolio
Chapters
6
How to Build a Funder Context Profile: Research to Reporting
Build a Sourced Funder Context Profile
build-funder-context-profile
Reporting
Align
6
How Do You Measure Change at Exit?
Measure Change at Exit (Not Just Completion)
measure-change-at-exit
Case
Nonprofit Track
7
How Do You Collect Applications Clean at the Source?
Collect Applications Clean at the Source
collect-applications-clean-at-source
Grant
Collect
7
How to Follow Up on Missing Investee Data
How to Follow Up on Missing Investee Data
chase-missing-investee-data
Portfolio
Chapters
7
How to Analyze Multilingual Feedback and Evaluate Software
Analyze and review multilingual feedback
analyze-multilingual-feedback
Feedback
Clean
7
Build a language review sheet and test software on original responses, translations, codes and reporting bases.
Multi-country programs · Multilingual survey data · Global networks & chapters
How to Define Impact Metrics Your Team and Funder Can Use
Define Measures the Organization and Funder Can Both Use
define-impact-metrics-funders-want
Reporting
Align
7
Survey Attrition in Longitudinal Studies: Track Missing Waves
Track missing waves and matched outcomes
survey-attrition-longitudinal-studies
Feedback
Read
8
Build a wave-status register, compare response groups and report paired change with coverage and limitations.
How to Use Mentor Notes to Review Participant Support
Use mentor notes for support review
mentor-notes-early-warning
Case
Nonprofit Track
8
How Do You Reduce Applicant Burden?
Reduce Applicant Burden
reduce-applicant-burden-auto-clarification
Grant
Collect
8
Find inconsistencies in portfolio returns before reporting
Analyze Investee Reports Across Sources
read-investee-reports-multi-signal
Portfolio
Chapters
8
Impact Metric Definitions: A Practical Worksheet and Example
Give Every Number One Definition
one-definition-for-every-number
Reporting
Define
8
How to Connect Quantitative and Qualitative Survey Data
Connect scores and comments
connect-quantitative-qualitative-survey-data
Feedback
Read
9
Build a linked analysis view and joint display, with clear groups, reporting bases and evidence limits.
How to Calculate SROI as New Evidence Arrives
Calculate SROI — Live, Sourced, and Honest
calculate-sroi-live
Case
Nonprofit Track
9
How to Collect Grantee Reports with Less Burden
Collect Grantee Reports Without Burden
collect-grantee-reporting-without-burden
Grant
Collect
9
Keep company, investment and reporting history connected
Track Results Against the Impact Agreement
track-investees-impact-agreement-variance
Portfolio
Chapters
9
Turn Reporting Requirements into Evidence: A Practical Mapping Guide
Turn Requirements Into Collectable Evidence
turn-reporting-requirements-into-evidence
Reporting
Define
9
Connect baseline, follow-up and different rater perspectives
Analyze pre, mid and post surveys
analyze-pre-mid-post-survey-data
Feedback
Read
10
Build a matched pre/mid/post analysis, interpret score movement and retain clear rules for missing waves.
How to Report a Job-Training Program to Grant Funders
Turn a Cohort into a Funder Impact Report
job-training-grant-impact-report
Case
Nonprofit Track
10
How to Follow Up on Missing Grantee Data
Chase Missing Grantee Data
chase-missing-grantee-data
Grant
Collect
10
How to Build Useful Portfolio Impact Monitoring Alerts
Build Useful Portfolio Impact Alerts
portfolio-risk-monitoring-alerts
Portfolio
Chapters
10
How to Collect Clean Data Inside Your Workflow
Collect Clean Evidence Inside the Workflow
collect-clean-data-at-the-source
Reporting
Embed
10
How to Analyze Longitudinal Survey Data
Analyze longitudinal survey data
analyze-longitudinal-survey-data
Feedback
Read
11
Build a continuing analysis record with clear time scales, observed trajectories and limits.
How to Turn a Job Description into a Requirements Checklist
Clarify employer requirements
job-description-requirements-checklist
Case
Social Enterprise Track
11
Review applications with evidence, clear criteria and human judgment
Review Without Reviewer Bias
review-applications-without-reviewer-bias
Grant
Analyze
11
How to Ask AI Questions About Your Portfolio Data
Ask AI Questions About Portfolio Data
ask-your-portfolio-anything
Portfolio
Chapters
11
How to Keep Impact Reporting Numbers Consistent
Get Stable Results From Governed Data
same-numbers-every-time
Reporting
Read
11
How Do You Analyze a Batch of Grant Applications?
Analyze a Whole Round
how-to-analyze-a-batch-of-grant-applications
Grant
Analyze
12
How to Measure Outcome Duration and Drop-Off
Measure outcome duration and drop-off
measure-outcome-duration-drop-off
Feedback
Read
12
Build a dated outcome claim, distinguish missingness from outcome loss and test forecast assumptions.
How to Score Candidate–Role Matches with a Clear Rubric
Review candidate–role evidence
score-candidate-role-matches-without-bias
Case
Social Enterprise Track
12
Evidence Traceability: Link Every Report Claim to Its Source
Trace Every Result Back to Its Evidence
where-every-number-came-from
Reporting
Read
12
How Do You Roll Up a Grant Portfolio?
Aggregate Outcomes Across a Grant Portfolio
how-to-roll-up-a-grant-portfolio
Portfolio
Chapters
13
How to Report Job Placements to Impact Investors
Turn a Cohort into a Social-Enterprise Investor Report
job-placement-investor-impact-report
Case
Social Enterprise Track
13
How Do You Track Reviewer Conflicts of Interest?
Track Reviewer Conflicts of Interest
track-conflicts-of-interest-audit
Grant
Analyze
13
How to Write a Donor Report: Format, Evidence and Example
Design a Report for a Real Funding Decision
donor-report-funders-trust
Reporting
Decide
13
Build a report brief and claim-and-evidence table before drafting. Explain delivery, outcomes, spending, limitations and next actions.
Program managers, grant leads and reporting teams
AI Data Access Controls: What Your Assistant May See
Control what the assistant can access
what-the-assistant-may-see
Feedback
Prove
13
Define task-specific access, test synthetic records and verify report-sharing boundaries.
How to Write an Evidence-Based Impact Narrative
Write a cited impact narrative
impact-narrative-funder-report-cited
Feedback
Prove
14
Build and check a report paragraph using a claim-and-source table, appropriate quotations and clear limitations.
How Do You Read a Grantee Report?
Read a Grantee Report
read-grantee-report-multi-signal
Grant
Analyze
14
How to Use SROI Across a Portfolio Without Double Counting
Use SROI Across a Portfolio
monetize-impact-sroi-across-levels
Portfolio
Chapters
14
How to Write a Funder Report with AI—and Check It
Generate the Audience-Specific Report From Evidence
assistant-writes-the-funder-report
Reporting
Decide
14
Draft from approved sources, check the claims, and save an accountable report version. Bring the brief from the previous lesson.
Program managers, grant leads and reporting teams
How Do You Compute Grantee Variance?
Compute Grantee Variance
how-to-compute-grantee-variance
Grant
Analyze
15
When Is a Monetary Value on Social Impact Credible?
Add a Credible Dollar Value With SROI
credible-dollar-value-on-impact
Reporting
Optional method
15
Prepare a valuation brief. Decide what the evidence supports, what needs more work, and when an outcome account is enough.
Program, evaluation and investment teams considering social-value estimates
Keep a person’s history connected across programs and staff changes
Follow one person over time
one-person-followed-for-years
Feedback
Shapes
15
Build a participant record that preserves episodes, dates, versions and missingness across repeated collection.
How Do You Build an SROI Value Map?
Build an SROI Value Map
how-to-build-an-sroi-value-map
Reporting
Optional method
16
Build a first value map, keep missing evidence visible, and give each unresolved outcome a next action.
Evaluation, program and investment teams preparing an SROI analysis
How Do You Track Budget and Actual Spend?
Track Budget vs Actual Spend
how-to-track-budget-invoices-actual-spend
Grant
Analyze
16
Multi-Rater Feedback: Connect Perspectives and Protect Context
Connect several perspectives on one person
several-people-describing-one-person
Feedback
Shapes
16
Design subject-rater relationships, reporting rules and a tested multi-perspective feedback record.
How Do You Pick a Financial Proxy for SROI?
Pick a Defensible Financial Proxy
how-to-pick-a-financial-proxy-for-sroi
Reporting
Optional method
17
Compare candidate valuation sources and document why one fits your outcome, stakeholder and reporting period.
Evaluation and reporting teams selecting financial proxies
How Do You Analyze Grantee Reporting Longitudinally?
Analyze Grantee Reporting Over Time
analyze-grantee-reporting-longitudinal
Grant
Analyze
17
How Do You Compare Investees When Each One Defines Its Metrics Differently?
Compare & Benchmark Investees
compare-benchmark-investees
Portfolio
Chapters
17
Cross-Program Reporting: Combine Results Without Losing Meaning
Combine evidence across programs
many-programs-one-picture
Feedback
Shapes
17
Build a defensible cross-program result with comparable measures, correct denominators and documented exclusions.
How Do You Calculate the SROI Ratio?
Calculate the SROI Ratio With a Range
how-to-calculate-the-sroi-ratio
Reporting
Optional method
18
Build a reproducible SROI calculation, test its assumptions and explain the result in a reviewed report.
Evaluation and reporting teams reviewing an SROI calculation
How to Read Form 990 for a Grant Review
Read a 990 for Compliance
how-to-read-a-990-for-compliance
Grant
Analyze
18
How Do You Build Dashboards and Compliance Reports?
Build Dashboards and Reviewed Reports
dashboards-sroi-compliance-reports
Portfolio
Chapters
18
Plan evidence collection across your network
Run a member-network survey
member-network-survey
Feedback
Shapes
18
Design and test a member reporting cycle with continuing records, coverage checks and authorized results.
Ask Your Whole Grant Round Anything (Assistant + MCP)
Ask Your Whole Grant Round Anything
ask-your-grant-round-anything
Grant
Analyze
19
Produce portfolio reports that trace back to approved evidence
Produce the LP and Board Impact Report
portfolio-lp-board-impact-report
Portfolio
Chapters
19
How Do You Build a Grant Audit Trail?
Build a Grant Audit Trail
grant-audit-compliance-trail
Grant
Communicate
20
How Do You Connect Your Stack Without Lock-In?
Connect Systems and Test Data Portability
portfolio-connect-your-stack
Portfolio
Chapters
20
How Do You Produce Grant Compliance Reports?
Produce Compliance Reports
grant-compliance-regulatory-reports
Grant
Communicate
21
How Do You Roll Grantees Into a Board Report?
Roll Grantees Into a Board Report
roll-grantees-funder-board-report
Grant
Communicate
22
How Do You Build Grant Dashboards and Maps?
Grant Dashboards & Maps
grant-dashboards-geographic-mapping
Grant
Communicate
23