Logo
Creative Financial Staffing

AP/AR Clerk

Creative Financial Staffing, Plainfield, Indiana, United States, 46168

Save Job

Accounts Payable / Accounts Receivable Clerk

Location: Plainfield, IN

Schedule: Full-Time | Fully In-Office

Salary: $45,000-$55,000 (based on experience) We are seeking a detail-oriented and motivated AP/AR Clerk to join our accounting team in Plainfield, Indiana. This is a fully in-office position ideal for someone who enjoys hands-on work, collaboration, and is looking for long-term growth opportunities within an expanding organization. Key Responsibilities:

* Process accounts payable invoices, ensuring accuracy, proper approvals, and timely payments

* Manage accounts receivable functions, including invoicing, posting payments, and resolving discrepancies

* Perform vendor and customer account reconciliations

* Maintain organized and accurate financial records

* Assist with month-end close activities as needed

* Communicate with internal teams and external vendors/customers regarding billing and payment questions

* Support the accounting team with additional administrative and financial tasks as assigned

Qualifications:

* 1-3 years of experience in accounts payable and/or accounts receivable

* Strong attention to detail and organizational skills

* Ability to manage multiple priorities in a fast-paced environment

* Proficiency in accounting software and Microsoft Excel

* Excellent communication and teamwork skills

* High school diploma required; associate's degree in accounting or related field preferred

What We Offer:

* Competitive salary based on experience

* Stable, full-time employment in a professional office environment

* Opportunities for career advancement and skill development

* Supportive team culture with hands-on training

If you are looking to grow your accounting career in a collaborative, in-office setting, we encourage you to apply.

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