Logo
Creative Financial Staffing

Accounting Clerk

Creative Financial Staffing, Columbus, Ohio, United States, 43213

Save Job

Job Title: Accounting Clerk Location: Whitehall, OH Salary Range: $48,000- $57,000 About Us:

Dedicated to achieving excellence across all facets of our operations, we recognize that a skilled and committed team is pivotal to our ongoing success. Currently, we are in search of a seasoned Accounting Clerk to enhance our finance department. If you possess a keen interest in numerical data, meticulous attention to detail, and an eagerness to contribute to a progressive organization, we would like to connect with you. Accounting Clerk Job Description:

* Data Management: Precisely input financial data into our accounting system.

* Billing: Generate and process invoices for timely payments.

* Reconciliation: Assist in reconciling bank and account statements.

* Expenditure Oversight: Monitor and categorize expenses efficiently.

* Financial Documentation: Maintain systematic and current financial records.

Accounting Clerk Qualifications:

* Prior experience in financial operations or as an Accounting Clerk is mandatory.

* Demonstrated attention to detail coupled with a commitment to accuracy.

* Proficiency in Microsoft Excel; familiarity with accounting software is advantageous (e.g., QuickBooks, SAP, or equivalent).

* Exceptional organizational and time management capabilities.

* Effective communication and interpersonal skills.

* A degree in finance or a related field is beneficial but not obligatory.

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