play icon for videos
← Academy
Module 3 of 5 · Membership & networks

Keep member, event and research history connected

Keep organizations, people, events and submissions as distinct records joined by explicit relationships. Use stable identifiers, dates and versions to preserve history when representatives change or follow-up evidence arrives. Link only where appropriate to the collection purpose. Anonymous responses can contribute to aggregate learning without becoming identifiable longitudinal records.

<!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:600px;max-width:100%;background:#FFFFFF;border:1px solid #ECE4D4;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 #F0E9DB;background:#F7F4EC} .hdr .n{font-family:'Inter',Georgia,serif;font-weight:600;font-size:16px;color:#2A2118;letter-spacing:-.2px;line-height:1.25;min-width:0} .hdr .pill{margin-left:auto;display:inline-flex;align-items:center;gap:6px;font-size:11.5px;font-weight:700;color:#C05B3F;background:#F6E7E1;padding:5px 11px;border-radius:20px;white-space:nowrap;flex-shrink:0} .hdr .pill .d{width:6px;height:6px;border-radius:50%;background:#C05B3F} .tabs{display:flex;gap:0;padding:12px 14px 0;background:#F7F4EC;flex-wrap:wrap} .tab{flex:1;min-width:76px;display:flex;flex-direction:column;align-items:center;gap:5px;cursor:pointer;font-family:inherit;font-size:11px;font-weight:700;color:#8A7B66;background:transparent;border:none;border-bottom:2px solid transparent;padding:8px 4px 10px} .tab .lbl{line-height:1.2;text-align:center} .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:#8A7B66;background:#F0E9DB} .tab.on .num{color:#fff;background:#C05B3F} .divider{height:1px;background:#F0E9DB} .body{padding:20px} .what{font-size:13.5px;line-height:1.55;color:#4A4030;margin:0 0 14px} .promptlbl{font-size:10px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:#B0A48D;margin-bottom:7px} .bubble{position:relative;font-family:ui-monospace,'SF Mono',Menlo,monospace;font-size:11.5px;line-height:1.55;color:#2A2118;background:#F7F4EC;border:1px solid #ECE4D4;border-left:3px solid #C05B3F;border-radius:12px;padding:13px 14px;white-space:pre-wrap;word-break:break-word} .actions{display:flex;align-items:center;gap:14px;margin-top:13px;flex-wrap:wrap} .copy{font-family:inherit;font-size:12px;font-weight:700;color:#C05B3F;background:#F6E7E1;border:1px solid #EFD5CC;border-radius:9px;padding:8px 14px;cursor:pointer} .copy.done{color:#15884F;background:#E4F1EA;border-color:#CBE6D6} .demo{font-size:12.5px;font-weight:700;color:#C05B3F;text-decoration:none} .demo:hover{text-decoration:underline} </style> </head> <body> <div class="card"> <div class="hdr"> <div class="n">How to track members over time</div> <span class="pill"><span class="d"></span>Sopact Sense</span> </div> <div class="tabs" id="tabs"></div> <div class="divider"></div> <div class="body"> <p class="what" id="what"></p> <div class="promptlbl">Copy-paste Sopact Assistant prompt</div> <div class="bubble" id="prompt"></div> <div class="actions"> <button type="button" class="copy" 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> </div> </div> <script> (function(){ var D = {"title":"How to track members over time","pill":"Sopact Sense","steps":[{"n":1,"tab":"Persistent ID","what":"Give every member a persistent ID that survives renewals and email changes, so join, renew, and lapse all sit on one record.","prompt":"Assign every member a persistent Contact ID that survives renewals and email changes, and flag any member appearing more than once under different names or emails so we can merge to one record."},{"n":2,"tab":"Recurring survey","what":"Run a short recurring member survey — value, satisfaction, likelihood to renew, and one open 'what would make you stay' — coded against the member's prior response.","prompt":"Design a short recurring member survey with four items: perceived value, satisfaction, likelihood to renew, and one open question 'what would make you stay?' Keep the wording and rating scale identical to last cycle so answers stay comparable, and map each to the member's persistent ID."},{"n":3,"tab":"At-risk signal","what":"Surface at-risk and disengaging members before the renewal date, each with the source sentence.","prompt":"Read this cycle of member feedback [BATCH]. For each member, code the response against our indicators, compare to their prior cycle on the same record, score renewal risk, and flag disengagement with the source sentence — surfaced before the renewal window."},{"n":4,"tab":"Report trend","what":"Report member outcomes longitudinally — value and engagement over years, not a per-year snapshot.","prompt":"Report member outcomes longitudinally across cycles on the persistent record: trend value, satisfaction, and renewal likelihood per member and per segment. Measure value, not just attendance, and hold the rating scale constant so the trend is real."}]}; var tabsEl = document.getElementById('tabs'); var whatEl = document.getElementById('what'); var promptEl = document.getElementById('prompt'); var copyEl = document.getElementById('copyBtn'); var cur = 0; function renderTabs(){ tabsEl.innerHTML=''; D.steps.forEach(function(st,i){ var b=document.createElement('button'); b.type='button'; b.className='tab'+(i===cur?' on':''); b.innerHTML='<span class="num">'+st.n+'</span><span class="lbl">'+st.tab+'</span>'; b.addEventListener('click',function(){cur=i;render();}); tabsEl.appendChild(b); }); } function render(){ renderTabs(); var st=D.steps[cur]; whatEl.textContent=st.what; promptEl.textContent=st.prompt; copyEl.textContent='Copy prompt'; copyEl.classList.remove('done'); } copyEl.addEventListener('click',function(){ var txt=D.steps[cur].prompt; function ok(){copyEl.textContent='Copied ✓';copyEl.classList.add('done');} if(navigator.clipboard&&navigator.clipboard.writeText){ navigator.clipboard.writeText(txt).then(ok,function(){fallback(txt,ok);}); }else{fallback(txt,ok);} }); function fallback(txt,ok){ var ta=document.createElement('textarea'); ta.value=txt;ta.style.position='fixed';ta.style.opacity='0'; document.body.appendChild(ta);ta.focus();ta.select(); try{document.execCommand('copy');ok();}catch(e){} document.body.removeChild(ta); } render(); })(); </script> </body> </html>
Sopact Academy · Membership & networks
Module 3 of 5 · Membership & networks

Keep member, event and research history connected

Keep organizations, people, events and submissions as distinct records joined by explicit relationships. Use stable identifiers, dates and versions to preserve history when representatives change or follow-up evidence arrives. Link only where appropriate to the collection purpose. Anonymous responses can contribute to aggregate learning without becoming identifiable longitudinal records.

Read the lesson ↓

Do not make the representative stand in for the member

Northstar’s M-12 is a member organization. Its representative R-4 can change without creating a new organization. If every annual return is keyed only to the representative’s email, a staff change can split the history or give a successor inappropriate access.

Give the member its own identifier. Record people and their dated roles separately. A submission identifies the member, reporting period, form version and contributor. The person’s access can change while the organization’s authorized history remains intact.

The same principle applies to events. Event E-7 has organizer records and participant responses. Those responses should retain their own source and role rather than becoming one undifferentiated event note.

Build only the relationships the question needs

For the annual return, M-12 links to successive submissions. For the study, consenting P-18 links to baseline and follow-up observations. A related respondent has a different identifier and an explicit relationship; their view is not automatically the participant’s view.

An anonymous visitor response can link to event E-7 and an appropriate reporting period without linking to a person. Do not enrich it with registration identity merely because that would make analysis more convenient.

Draw these relationships before choosing a single wide spreadsheet. Ask what should continue over time: the organization, person, event or project. More than one may be needed, but each relationship should have a purpose.

Make changes visible instead of overwriting them

M-12 submits a corrected supporting document. Retain the original, record which source supersedes it for the current review, and note who changed it and why. Later readers should not see an unexplained conflict or assume the original was never received.

Question wording and definitions can also change. Save the version used for each observation. A merger, split or lapse needs a deliberate relationship decision; silently reusing an old identifier for a new organization can produce a false trend.

Show missing follow-ups explicitly. If P-18 does not respond at the next wave, there is no new observation to compare. Do not carry forward a prior score as though it was newly collected or treat a missing response as improvement.

Test a longitudinal question before expanding

Ask whether M-12’s participation changed between two periods. Can you find the relevant submissions, definition versions and review status? Can you see whether the same population was covered? If those elements are missing, the chart is premature.

Then test a different question: what changed in P-18’s reported experience? Identify the matched observations and who provided them. The association-level question and the participant question require different records even though both involve change over time.

This continuing context is where a connected workflow earns its value. The next colleague should not have to repeat the matching exercise or guess which file is current. It supports more useful questions; it does not make every trend a causal finding or a prediction of renewal.

Work through the Northstar example

This is a fictional teaching example. Adapt the fields and rules to the question your own network needs to answer.

RecordConnects toHistory to preserve
Member M-12Annual submissions; dated representative rolesMembership and reporting periods; corrections
Event E-7Organizer evidence; appropriate feedbackEvent date; source platform; instrument version
Participant P-18Consented study waves; distinct related respondentsPurpose; role; observation date; missing waves
Anonymous visitor responseEvent and appropriate aggregate context onlyCollection promise; no inferred identity

Build this part of your plan in more detail

These lessons address the next practical questions in this module. Choose the detail your workflow needs, then return to complete the exercise.

More practical questions in this module (4)
Detailed practical guide: How to Track Members Over Time

The full guide is preserved here. Use this detail when it helps your plan, then continue with the exercise.

Track members over time by keeping a continuing member record, dated observations and the context needed to interpret change. Separate profile information, participation, feedback and actual renewal events. Use that history to prepare a useful conversation or support response, without treating a satisfaction comment as a prediction that someone will leave.

This lesson produces a membership history map and a follow-up review. It supports individual memberships and organizational networks, but the record relationships differ. Decide which kind of member you are following before designing the collection.

Separate the member from the person answering

For an individual membership, the continuing record concerns the member. For an organizational membership, keep the organization separate from its representatives and their dated roles. A new representative should not create a new member organization or automatically inherit access to every earlier personal comment.

Use a stable identifier where appropriate, while retaining changing contact details separately. Review possible duplicates before merging them. Similar names or a shared email address do not prove that two records describe the same person or organization.

Record joins, renewals, lapses and changes with dates. A merger, split or return after a lapse needs a deliberate relationship decision so the history remains understandable.

Give different evidence different jobs

EvidenceQuestion it can informImportant distinction
Profile informationWho is the member and what context is relevant?A current profile should not silently replace historical context
Participation recordWhich activities were recorded?Attendance is not automatically perceived value
Member feedbackWhat value, difficulty or support need does the respondent report?A respondent’s view has a date and perspective
Renewal intentionWhat does the respondent currently expect or intend?An intention is not an actual renewal
Renewal eventWhat happened under the membership rules?The event does not by itself explain why it happened

These sources can support one continuing view without being forced into a single survey. A member’s activity report, a short feedback check-in and a renewal record have different collection moments.

Reuse stable information and refresh changing views

Do not ask members to retype unchanged registration information when it can appropriately be reused or confirmed. Record changes to location, role or organizational details with effective dates.

Perceived value and support needs can change, so an earlier answer is context rather than a permanent replacement for a new observation. Decide whether showing the prior answer will help the conversation or influence the response in a way that conflicts with the measurement purpose.

For example, a representative may be invited to confirm the organization’s profile while answering a fresh question about current support needs. Keep the confirmation date and the feedback date. A profile confirmed last year is not automatically current because today’s dashboard displays it.

Keep a small comparable core while allowing local questions

A network may agree a few shared questions about value or support while allowing members or regions to ask questions specific to their activities. There is no universal four-question survey that every membership needs.

Define the shared question, response options, eligible respondent role, timing and reporting base. Retain versions. If wording, scale or administration changes, assess whether a comparison remains meaningful instead of assuming either perfect continuity or an automatic loss of all useful information.

A data dictionary can document compatible mappings between local fields. It cannot make an event satisfaction score equivalent to the overall value of membership. Keep those results distinct when they answer different questions.

Read change with the surrounding history

Consider a fictional organization, Member M-12. In the first period, its representative describes the network’s training as useful and asks for help recruiting volunteers. In the next period, a different representative asks for simpler reporting instructions. The organization is the same, but the respondent and the question context have changed.

A useful review preserves both accounts. It does not declare that the organization’s value fell merely because the newer comment concerns a problem. Check any comparable structured measure, who answered it and what changed in the membership or service context.

For an individual member, a declining score can also be a prompt for a respectful conversation. Record what the person says and any agreed response. Do not silently infer disengagement or intent to leave from a short or ambiguous answer.

Distinguish a review flag from a renewal prediction

A review flag can identify a concrete issue: an unanswered support request, a reported difficulty or a renewal date approaching without a recorded decision. Give the reviewer the source, date and relevant context.

A predicted probability of leaving is a different claim and requires appropriate evidence and validation. A sentiment label, repeated prompt or continuing identifier does not establish that predictive ability. Use an evidence-based review queue when that is what the available information supports.

Assign a responsible owner and record the outcome of follow-up. A task assigned, a conversation held and an issue resolved are distinct states. Avoid counting outreach itself as improved member value.

Report individual history and group coverage

For a member, show the appropriate approved history and open actions. For a group, state who was eligible, who supplied usable evidence and whether the observations are comparable.

If 40 members were invited, 30 responded this period and 22 have comparable responses in both periods, a matched trend describes those 22. The current-period summary may describe 30. Neither number should be presented as the complete history of all 40.

Check changes in the group before interpreting a segment trend. New members, representative turnover and missing responses can alter a group average. Keep meaningful participation measures alongside feedback rather than treating attendance as either proof of value or irrelevant information.

Test the continuing record in Sopact

Use fictional records to test whether new feedback, uploaded evidence and relevant renewal information attach to the right member and period. Check how a changed representative, corrected profile and uncertain duplicate are handled.

Then ask an authorized reviewer to reconstruct one finding from the original evidence and definitions. Test member-specific views and exports as well as the central dashboard. The advantage to assess is whether the operational team can maintain the history and act on it without rebuilding the record each cycle.

Your exercise

  1. Choose an individual or organizational membership model.
  2. Separate the member, representative, profile and dated observations.
  3. Define one shared measure and one useful local question.
  4. Record how a changed representative or question affects comparison.
  5. Create one review flag supported by evidence.
  6. Show the matched group and missing coverage for a hypothetical trend.
  7. Assign a follow-up owner and define what the member will receive.

Frequently asked questions

Why use a persistent identifier with an annual survey?

It can connect appropriate observations across periods despite changed contact details. An annual survey and a continuing identifier can work together; the identifier does not replace measurement definitions or permissions.

Should every cycle ask the same questions?

Keep a comparable shared core where the decision requires it and allow useful local or new questions. Preserve versions and assess changes in meaning, timing and respondents before reporting a trend.

How can the team act before a renewal?

Review concrete unresolved requests, current feedback and relevant renewal dates, then assign appropriate follow-up. Do not call the result a validated renewal prediction unless the evidence supports that claim.

Add this part to your plan

Fill workbook page 4. Draw the relationships for M-12, E-7 and P-18. Mark one relationship that must not be created. Explain how a corrected document and a new representative affect the map.

Download workbook (fillable PDF)
Compare with a suggested answer

M-12 continues when R-4 is replaced; role dates and access change. The new document is linked as a reviewed correction, not a silent replacement. P-18’s study waves retain their own dates and purpose. Anonymous visitor feedback is not joined to registration identity.

Self-check: Can your map answer both a member-history question and a study question without confusing whose evidence you are reading?

Questions you may have

Is an email address a reliable continuing identifier?

It can change or be shared. Use a stable record identifier and a deliberate matching process; retain contact details separately where needed.

Should every response connect to a person?

No. Connect only where appropriate to the collection purpose and permissions. Anonymous collection should remain compatible with the promise made to respondents.

Apply the method to your work

Use the five-part plan to assess the sources, analysis and permissions your team needs. The solution page shows where a connected platform can support that workflow.

Explore the membership and networks solution →

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