Logo
Creative Financial Staffing

Sales Analyst Job at Creative Financial Staffing in Eden Prairie

Creative Financial Staffing, Eden Prairie, MN, US

Save Job

Job Title: Sales Analyst Location: Eden Prairie, MN
Employment Type: Full-Time
Industry: Design / Retail
Duration: 4-5 month contract Position Summary:
Our client is seeking a detail-oriented and motivated Sales Analyst to support the sales team with administrative, analytical, and customer service tasks. The ideal candidate will have strong proficiency in Microsoft Excel and excellent organizational skills to help streamline sales operations, track data, and ensure a seamless customer experience. Key Responsibilities:
  • Provide administrative and operational support to the sales team.
  • Prepare and maintain sales reports, forecasts, and performance metrics using Microsoft Excel.
  • Manage and update customer records, price lists, and sales databases.
  • Assist with order entry, tracking shipments, and ensuring accurate documentation.
  • Communicate with customers to provide quotes, confirm orders, and follow up on inquiries.
  • Coordinate with internal departments including accounting, logistics, and customer service to ensure timely delivery and billing.
  • Analyze sales data and generate insights to support decision-making.
  • Support the preparation of sales presentations, proposals, and marketing materials.
  • Maintain confidentiality of sales and customer information at all times.
Qualifications:
  • 2+ years of experience in a sales support, administrative, or customer service role is preferred, but no formal experience is required
  • Strong proficiency in Microsoft Excel (data entry, formulas and basic functions) is a must
  • Excellent attention to detail and organizational skills.
  • Strong written and verbal communication skills.
  • Ability to multitask and work effectively in a fast-paced environment.
  • Experience with CRM or ERP systems a plus.
  • High school diploma or equivalent required; associate or bachelor's degree preferred.
Compensation:
$22-28/hr based on experience Work Model:
100% in office #ZRCFS

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