Special Education Progress Note Formatter

Special Education Progress Note Formatter

Generate data-driven, objective IEP progress notes instantly.

Session Data

Narrative Preview

This text updates automatically as you type.

Student Context

Enter details for the official PDF header. These do not affect the narrative above, only the exported report.

Dropdown Customization

Note: Customize the specific language used in the dropdowns to match your district's terminology or prompt hierarchy.

Confidential Educational Record

Student: ${name}
Date of Service: ${formattedDate}
Provider: ${provider}
Goal Area: ${goalArea}
${goalText ? `
IEP Goal Reference:
${goalText}
` : ''}

Session Narrative

${noteBody}
Generated via SPED Progress Note Tool
`; const element = document.createElement('div'); element.innerHTML = content; const opt = { margin: 0.5, filename: `ProgressNote_${name.replace(/\s+/g, '_')}_${formattedDate.replace(/\//g, '-')}.pdf`, image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'in', format: 'letter', orientation: 'portrait' } }; if (window.html2pdf) { html2pdf().set(opt).from(element).save(); } else { alert("PDF Generator is initializing. Please try again in a few seconds."); } }
Scroll to Top