Logo
Creative Financial Staffing

Accountant

Creative Financial Staffing, Dayton, Ohio, United States, 45402

Save Job

a { text-decoration: none; color: #464feb; } tr th, tr td { border: 1px solid #e6e6e6; } tr th { background-color: #f5f5f5; } Job Title: Accountant

Location: On-site Dayton, OH

Salary Range: $45,000 - $55,000 Position Summary

The Accountant is responsible for maintaining accurate financial records and ensuring compliance with accounting standards. This role supports the organization's financial operations through effective management of resources, reporting, and internal controls. Key Responsibilities:

* Maintain the general ledger, including journal entries, reconciliations, and month-end close

* Prepare and review financial statements in accordance with GAAP

* Manage accounts payable and receivable, ensuring timely and accurate processing

* Reconcile bank and credit card accounts

* Assist in the preparation of annual budgets and forecasts

* Monitor budget-to-actual results and provide variance analysis

* Prepare financial reports for leadership

* Ensure compliance with federal, state, and local regulations

* Support annual audits and tax filings

* Maintain strong internal controls and documentation

* Assist with policy development related to financial procedures

Qualifications:

* Associate's or bachelor's degree in Accounting, Finance, or related field

* 3+ years of accounting experience

* Working knowledge of GAAP

* Proficiency in accounting software and Microsoft Excel

#LI-LC1

#LI-Onsite

EB- 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