Logo
Creative Financial Staffing

Staff Accountant

Creative Financial Staffing, Tampa, Florida, us, 33601

Save Job

Staff Accountant Salary: $65,000 - $75,000 Why This Opportunity Stands Out:

This Staff Accountant role is ideal for someone looking to grow in a stable, team-oriented environment. As a Staff Accountant, you'll be exposed to a wide range of accounting functions and work closely with leadership.

* Hybrid work model with structured onboarding and mentorship.

* Competitive vacation policy, wellness incentives, and employer-matched retirement savings.

* The Staff Accountant will be part of a company that promotes from within and values long-term development.

* As a Staff Accountant, you'll gain hands-on experience with both routine and strategic accounting tasks.

* This is a great opportunity for a Staff Accountant who wants to make an impact and grow their career.

Key Responsibilities:

* The Staff Accountant will assist with monthly close and journal entries.

* Maintain general ledger accuracy and perform reconciliations.

* Support audits and prepare internal financial reports.

* Collaborate with other departments to ensure accurate financial data.

* Participate in process improvement initiatives as a proactive Staff Accountant.

Qualifications:

* 2+ years of experience as a Staff Accountant or in a similar accounting role.

* Bachelor's degree in Accounting or Finance.

* Proficiency in Excel and accounting systems.

EB-1032663102 document.addEventListener('DOMContentLoaded', () => { const root = document.querySelector('#job_desc'); if (!root) return; // Skip wrapping if we've already done it if (root.dataset.hashtagsWrapped === "1") return; const SKIP = new Set(['SCRIPT','STYLE']); const walker = document.createTreeWalker(root, NodeFilter.SHOW_TEXT, { acceptNode(node) { if (!node.nodeValue || !node.nodeValue.match(/#[\p{L}\p{N}_]+/u)) return NodeFilter.FILTER_REJECT; // Avoid wrapping inside an existing hashtag span let p = node.parentNode; while (p && p !== root) { if (p.nodeType === 1 && p.hasAttribute('data-hashtag')) return NodeFilter.FILTER_REJECT; if (SKIP.has(p.nodeName)) return NodeFilter.FILTER_REJECT; p = p.parentNode; } return NodeFilter.FILTER_ACCEPT; } }); const re = /#[\p{L}\p{N}_-]+/gu; function wrapTextNode(textNode) { const text = textNode.nodeValue; re.lastIndex = 0; let m, last = 0; const frag = document.createDocumentFragment(); while ((m = re.exec(text)) !== null) { // preceding plain text if (m.index > last) frag.appendChild(document.createTextNode(text.slice(last, m.index))); // hashtag span const span = document.createElement('span'); span.textContent = m[0]; span.setAttribute('data-hashtag', '1'); // idempotence guard span.setAttribute('style', 'font-size:9px;color:#fff'); // requested inline style frag.appendChild(span); last = re.lastIndex; } // trailing plain text if (last