Commission Calculator

Calculate your freelance commission prices and generate a professional price sheet.

100% Free Tool

1. Your Info

2. Base Rate

3. Complexity Levels

Define tiers. Each level multiplies the hourly rate by estimated hours.

4. Add-ons & Fees

5. Terms (optional)

Stay Updated

Get free tools, templates, and tips delivered to your inbox.

More Free Creator Tools

Get All Tools

Lifetime Pass ($99.99) gets every tool we build. Or resell them all under your brand from $99.

Visit the Store
Copied!
`; showToast('Price sheet generated!'); gtag('event','generate_commissions',{event_category:'tool_use'}); } function copyText(){ if(!plainText){showToast('Generate first');return;} navigator.clipboard.writeText(plainText); showToast('Copied!'); gtag('event','copy_commissions',{event_category:'tool_use'}); } function downloadHTML(){ if(!sheetHTML){showToast('Generate first');return;} const blob=new Blob([sheetHTML],{type:'text/html'}); const a=document.createElement('a'); a.href=URL.createObjectURL(blob); a.download='commission-sheet.html'; a.click(); URL.revokeObjectURL(a.href); gtag('event','download_commissions',{event_category:'tool_use'}); }