Logo
Creative Financial Staffing

Tax Manager (Atlanta, GA)

Creative Financial Staffing, Atlanta, Georgia, United States, 30339

Save Job

a { text-decoration: none; color: #464feb; } tr th, tr td { border: 1px solid #e6e6e6; } tr th { background-color: #f5f5f5; } Tax Manager - Public Accounting Location: Atlanta, GA | Hybrid | Full-Time We are recruiting on behalf of a respected mid-sized public accounting firm for an experienced Tax Manager . This position offers the opportunity to lead complex tax engagements and provide strategic guidance to clients across diverse areas, including high-net-worth individuals, corporations, partnerships, estates, trusts, and gift tax matters. Key Responsibilities

* Review and prepare complex tax returns for individuals, businesses, and estates.

* Mentor and develop junior team members.

* Maintain accurate workpapers and ensure compliance with applicable regulations.

* Communicate effectively with engagement leaders and clients.

* Conduct tax research and stay current on tax law changes.

Qualifications

* Bachelor's degree in Accounting.

* Active CPA license ( required ).

* 10+ years of tax experience in public accounting ( preferred ).

* Strong technical knowledge and attention to detail.

* Excellent communication and organizational skills.

* Experience with Thomson Reuters UltraTax CS ( a plus ).

Benefits

* Competitive salary and annual bonus.

* Medical and dental insurance.

* 401(k) with employer match.

* Paid vacation and holidays.

* Flexible hybrid work environment.

Apply today to join a client-focused team that values integrity, collaboration, and professional growth!

#INJAN2026 #LI-LG1

#ZRCFS

#LI-CM4

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