Logo
Creative Financial Staffing

Accounts Payable Specialist

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

Save Job

Job Title: Accounts Payable Specialist Salary Range: $60,000-$65,000 Type: Full-time About Us: Elevate your career with us! We are on the lookout for an organized and detail-oriented Accounts Payable Specialist to join our dynamic finance team. Job Description: We're seeking a dedicated Accounts Payable Specialist to manage the day-to-day processing of invoices and payments. Your role will involve meticulous record-keeping, reconciling statements, and collaborating with internal teams to ensure the seamless and timely execution of payments. Accounts Payable Specialist Responsibilities:

* Efficiently process invoices with precision

* Match invoices with purchase orders and receipts

* Reconcile vendor statements, resolving discrepancies

* Ensure timely payments to vendors

* Collaborate with internal departments to address payment-related inquiries

* Maintain organized and up-to-date records of financial transactions

Accounts Payable Specialist Qualifications:

* High school diploma or equivalent; additional education in accounting is a plus

* Proven experience as an Accounts Payable Specialist or in a similar role

* Familiarity with accounting software and proficiency in Microsoft Excel

* Detail-oriented with strong organizational and communication skills

* Ability to meet deadlines and thrive in a team environment

Accounts Payable Specialist Benefits:

* Competitive salary

* Health, dental, and vision insurance

* Retirement savings plan

* Opportunities for professional development

* Positive and collaborative work culture

How to Apply: Interested candidates are encouraged to submit their resume. We eagerly anticipate welcoming a new team member who shares our commitment to precision and efficiency. #ZRCFS

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