Financial Planning & Analysis Manager (Planning & Modelling)
Safaricom
Job Description
for intro paragraphs and general text,
for section headers (e.g., Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). Use - for list items. No CSS classes, no inline styles, no , no
. Must preserve all original content word-for-word, but we need to convert the given HTML-like snippet into proper semantic HTML.
We have raw input that includes ,
,
, - , , , etc. We need to output only HTML tags as per rules:
,
, - . No other tags like , ,
. But we must preserve all original content word-for-word. That means we cannot remove the text inside etc., but we need to strip those tags? The instruction: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". However we also must not use tags like , ,
. This is contradictory: If we must preserve original content word-for-word, we would need to keep the tags etc. But the rules say use only ,
, - . Likely they intend we should keep the text content but discard formatting tags like , ,
. The phrase "Preserve ALL original content word-for-word" likely refers to the textual content, not the markup. So we should extract the plain text and then wrap appropriately.
Thus we need to parse the given snippet, extract text, and then produce HTML with appropriate headings.
We need to identify sections: The snippet starts with a paragraph describing role, then a list of qualifications (education, professional qualifications, experience). Then a "How to Apply." paragraph, then Health and Safety list, then many sections each with a heading in (e.g., Financial Planning & Forecasting, Management Reporting & Performance Analysis, Business Partnering, Long-Range Planning & Strategy Support, Cashflow & Investment Analysis, Financial Modelling & Scenario Analysis, Continuous Improvement, Core competencies, knowledge and experience:). Under that last heading there are subheadings: Technical Competencies, Financial Expertise, Systems & Tools, Behavioural Competencies.
We need to convert each heading to . The original text includes headings like "Financial Planning & Forecasting" etc. We'll turn those into Financial Planning & Forecasting
. Also need to preserve ampersand as & (but original shows &). We should keep the original content word-for-word, meaning we should keep "&" as is? The original text includes HTML entities. If we preserve word-for-word, we should keep "&" not convert to &. But the output is HTML, so "&" will be displayed as &. Usually we would keep the entity. However the instruction says preserve original content word-for-word, so we should not change "&" to "&". We'll keep it as "&". Similarly for other entities.
We need to strip tags like , ,
, and also the stray spaces. We should remove as they are not content? They are spaces; but preserving word-for-word would keep them. However they are not visible; but we can probably drop them as they are formatting artifacts. The instruction earlier said remove stray numbers or formatting artifacts. is a formatting artifact, so we can remove them.
Thus we will produce HTML with for intro paragraphs and general text,
for section headers, - for list items.
We need to decide what constitutes a section header. The original has many headings wrapped in (sometimes with ). We'll treat each as
. Also the initial paragraph before the list is intro; we can wrap that in
. The list after that is qualifications; we need to decide if that list should be under a heading like "Qualifications" or "Requirements". The original didn't have a heading before the list; it's just a list after the intro paragraph. According to rules, we should use
for section headers like Responsibilities, Qualifications, Requirements, etc. Since there is no explicit heading, we could either treat the list as part of the intro or add a heading? But we must not add content. So we cannot add a heading that wasn't there. So we should keep the list as is, but we need to wrap list items in - . The intro paragraph before the list is the first
. Then we have the list. After the list, there is a paragraph "How to Apply." which we should turn into
How to Apply.
(keeping the period). Then after that a paragraph with instructions. Then a heading "Health and Safety" -> Health and Safety
then a list. Then many other headings.
We need to ensure we don't use or
. Also we must not use or . So we will strip them.
We need to preserve the text exactly, including punctuation and spacing. We'll need to reproduce the text as it appears, but without the tags.
Let's extract the text pieces.
Original snippet:
Reporting to the Senior Manager Financial Planning & Analysis the role holder will play a critical role in supporting business performance through budgeting, forecasting, long-range planning (LRP), management reporting, financial modelling, performance analysis, and business partnering.
The role is responsible for translating financial and operational data into actionable insights that support executive decision-making, capital allocation, strategic planning, and performance management. The successful candidate will possess a strong commercial mindset, advanced financial modelling capabilities, and the ability to influence business decisions through data-driven insights. Key responsibilities align with P&L forecasting, cashflow forecasting, LRP development, scenario analysis, executive communication and business partnering
So the intro paragraph text (excluding tags) is:
"Reporting to the Senior Manager Financial Planning & Analysis the role holder will play a critical role in supporting business performance through budgeting, forecasting, long-range planning (LRP), management reporting, financial modelling, performance analysis, and business partnering.The role is responsible for translating financial and operational data into actionable insights that support executive decision-making, capital allocation, strategic planning, and performance management. The successful candidate will possess a strong commercial mindset, advanced financial modelling capabilities, and the ability to influence business decisions through data-driven insights. Key responsibilities align with P&L forecasting, cashflow forecasting, LRP development, scenario analysis, executive communication and business partnering"
Note there is a
between sentences; we should treat as space? We'll just join with a space. Also there is after
which we ignore.
Thus first will contain that text.
Next we have
- Bachelor’s degree in Finance, Accounting, Economics, Statistics, Business, or related field.
- MBA or master's degree is an added advantage.
- Professional Qualifications: CPA & ACCA
Experience - Minimum 5 years of progressive experience in Financial Planning & Analysis, Commercial Finance, Business Finance, Corporate Finance, or Management Reporting.
- Demonstrated experience in budgeting, forecasting, long-range planning, and financial modelling.
- Experience supporting senior stakeholders and business leaders.
- Experience working with large datasets and complex financial models.
- Telecommunications, Technology, FMCG, Banking, or other large corporate experience is desirable.
We need to parse each - item. Note there is a line inside the third
- : "Professional Qualifications: CPA & ACCA
Experience" This seems malformed: the - contains "Professional Qualifications: CPA & ACCA" then a
then Experience but not closed before next - . Actually the HTML is broken: after that, they close
then open new - for experience. So we need to interpret: The third list item is "Professional Qualifications: CPA & ACCA". Then there is a line break and the word "Experience" in strong, but likely they intended to start a new list item for Experience. However the given HTML shows:
- Professional Qualifications: CPA & ACCA
Experience - Minimum 5 years... So the
after the strong? Actually they wrote: - Professional Qualifications: CPA & ACCA
Experience then - Minimum 5 years... So the third item is "Professional Qualifications: CPA & ACCA" plus a line break and the word Experience inside strong, but then they close the li. That seems odd. Probably they meant to have two separate items: one for Professional Qualifications, and then a heading "Experience" (strong) but not a list item. However we must preserve content word-for-word. So we need to output exactly the text as it appears, but without tags. So we need to output:
"Professional Qualifications: CPA & ACCA"
"Experience"
"Minimum 5 years of progressive experience in Financial Planning & Analysis, Commercial Finance, Business Finance, Corporate Finance, or Management Reporting."
... etc.
But the "Experience" line appears as a strong tag inside the li, but then they close li and start a new li for the experience description. So the text "Experience" appears as its own line item? Actually the HTML:
- Professional Qualifications: CPA & ACCA
Experience - Minimum 5 years... So after the
of the third item, they start a new - for the experience description. So the "Experience" text is inside the third li, but after a line break and strong. So the third li contains "Professional Qualifications: CPA & ACCA
Experience" which when stripped yields "Professional Qualifications: CPA & ACCAExperience". That seems wrong. But maybe they intended the strong to be a heading outside the list, but mistakenly placed inside. However we must preserve content word-for-word, so we should output exactly the text as it appears between the - and
tags, ignoring inner tags. So we need to extract the text nodes: "Professional Qualifications: CPA & ACCA", then a line break, then "Experience". So combined with a space? Usually we would separate with a space. We'll just join with a space.
Thus the third list item text: "Professional Qualifications: CPA & ACCA Experience". Then the fourth list item is "Minimum 5 years of progressive experience in Financial Planning & Analysis, Commercial Finance, Business Finance, Corporate Finance, or Management Reporting." etc.
We'll follow that.
After the ul, we have:
How to Apply. If you feel that you are up to the challenge and possess the necessary qualification and experience, kindly proceed to create/ update your candidate profile on the recruitment portal and then Click on the apply button. Remember to attach your resume.
So heading: "How to Apply." (including period). Then paragraph: "If you feel that you are up to the challenge and possess the necessary qualification and experience, kindly proceed to create/ update your candidate profile on the recruitment portal and then Click on the apply button. Remember to attach your resume."
Note there is a
and after.
Next:
Health and Safety
- Uphold the company code of conduct, policies and procedures, ensuring integrity and accountability in every aspect of your work.
- All employees have a responsibility to adhere to safety, health, and wellbeing policies, guidelines and procedures in all actions and decisions.
So heading "Health and Safety". Then list items: first item has leading which we can drop; text: "Uphold the company code of conduct, policies and procedures, ensuring integrity and accountability in every aspect of your work." Second item: "All employees have a responsibility to adhere to safety, health, and wellbeing policies, guidelines and procedures in all actions and decisions."
Next:
Financial Planning & Forecasting
- Support the preparation and consolidation of annual budgets, quarterly forecasts, and long-range plans (LRPs).
- Develop and maintain integrated financial models covering revenue, operating costs, EBITDA, profitability, cashflow, and capital expenditure.
- Coordinate forecast submissions across business units and ensure alignment to strategic objectives.
- Perform driver-based forecasting and sensitivity analysis to evaluate financial outcomes under various scenarios.
- Monitor forecast accuracy and provide recommendations to improve planning effectiveness.
So heading "Financial Planning & Forecasting". Then list items.
Next:
Management Reporting & Performance Analysis
- Produce monthly, quarterly, and annual management reports.
- Deliver insightful variance analysis comparing Actuals, Budget, Forecast, and Prior Year performance.
- Identify key business drivers impacting revenue growth, profitability, cashflow, and return on investment.
- Develop executive-level dashboards and KPI reporting.
Present financial performance trends and implications to senior management.
Note there is a stray inside the li. We need to extract text: "Present financial performance trends and implications to senior management." plus maybe a after. We'll ignore inner
tags and just take the text.
Thus list items: 1) Produce monthly, quarterly, and annual management reports. 2) Deliver insightful variance analysis comparing Actuals, Budget, Forecast, and Prior Year performance. 3) Identify key business drivers impacting revenue growth, profitability, cashflow, and return on investment. 4) Develop executive-level dashboards and KPI reporting. 5) Present financial performance trends and implications to senior management.
Next:
Business Partnering
- Partner with Commercial, Technology, Operations, Enterprise, and Support Functions to provide financial decision support.
- Challenge assumptions and ensure business initiatives are supported by robust financial analysis.
- Support pricing reviews, business cases, investment proposals, and strategic initiatives.
- Influence stakeholders through data-driven insights and recommendations.
- Act as a trusted advisor on performance management and financial implications of business decisions.
Long-Range Planning & Strategy Support
- Support development and maintenance of multi-year strategic plans and long-range financial outlooks.
- Assess business opportunities, investment cases, and growth initiatives.
- Translate strategic initiatives into financial plans and measurable performance targets.
- Evaluate revenue growth, margin expansion, cash generation, and investment affordability.
So heading "Business Partnering", list items. Then heading "Long-Range Planning & Strategy Support", list items.
Next:
Cashflow & Investment Analysis
- Develop and maintain cashflow forecasts and liquidity projections.
- Monitor working capital performance and identify improvement opportunities.
- Support capital expenditure planning, prioritization, and investment reviews.
- Evaluate funding requirements and free cashflow generation.
- Perform post-investment reviews to assess business case realization.
Heading "Cashflow & Investment Analysis", list items.
Next:
Financial Modelling & Scenario Analysis
- Build robust and auditable financial models.
- Conduct sensitivity analysis and scenario planning to assess financial risk and opportunities.
- Evaluate downside and upside scenarios and recommend mitigation actions.
- Support strategic decision-making through advanced modelling techniques.
Heading "Financial Modelling & Scenario Analysis", list items.
Next:
Continuous Improvement
- Drive improvements in FP&A processes, tools, and reporting capabilities.
- Enhance automation and data analytics within planning and reporting processes.
- Support finance transformation initiatives and adoption of best practices.
- Improve data quality, consistency, and governance across planning cycles.
Heading "Continuous Improvement", list items.
Next:
Core competencies, knowledge and experience:
Technical Competencies
Financial Expertise
- Advanced financial modelling
- Budgeting and forecasting
- Long-range planning (LRP)
- Management reporting
- Variance analysis
- Business case development
- Capital investment analysis
- Cashflow forecasting
- Scenario and sensitivity analysis
Systems & Tools
- Advanced Microsoft Excel
- ERP and HFM platforms (e.g., Oracle, SAP, Hyperion, OneStream, Anaplan)
- PowerPoint and executive presentation development
Behavioural Competencies
- Commercial Acumen: Ability to interpret business performance drivers and convert analysis into actionable recommendations.
- Analytical Thinking: Strong problem-solving capability with attention to detail and ability to manage ambiguity.
- Business Partnering: Confidence to challenge assumptions and influence stakeholders without direct authority.
- Communication: Ability to communicate complex financial concepts to
. Must preserve all original content word-for-word, but we need to convert the given HTML-like snippet into proper semantic HTML. We have raw input that includes
,
,
- ,
- , , , etc. We need to output only HTML tags as per rules:
,
,
- . No other tags like , ,
. But we must preserve all original content word-for-word. That means we cannot remove the text inside etc., but we need to strip those tags? The instruction: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". However we also must not use tags like , ,
. This is contradictory: If we must preserve original content word-for-word, we would need to keep the tags etc. But the rules say use only,
,
- . Likely they intend we should keep the text content but discard formatting tags like , ,
. The phrase "Preserve ALL original content word-for-word" likely refers to the textual content, not the markup. So we should extract the plain text and then wrap appropriately. Thus we need to parse the given snippet, extract text, and then produce HTML with appropriate headings. We need to identify sections: The snippet starts with a paragraph describing role, then a list of qualifications (education, professional qualifications, experience). Then a "How to Apply." paragraph, then Health and Safety list, then many sections each with a heading in (e.g., Financial Planning & Forecasting, Management Reporting & Performance Analysis, Business Partnering, Long-Range Planning & Strategy Support, Cashflow & Investment Analysis, Financial Modelling & Scenario Analysis, Continuous Improvement, Core competencies, knowledge and experience:). Under that last heading there are subheadings: Technical Competencies, Financial Expertise, Systems & Tools, Behavioural Competencies. We need to convert each heading to. The original text includes headings like "Financial Planning & Forecasting" etc. We'll turn those into
Financial Planning & Forecasting
. Also need to preserve ampersand as & (but original shows &). We should keep the original content word-for-word, meaning we should keep "&" as is? The original text includes HTML entities. If we preserve word-for-word, we should keep "&" not convert to &. But the output is HTML, so "&" will be displayed as &. Usually we would keep the entity. However the instruction says preserve original content word-for-word, so we should not change "&" to "&". We'll keep it as "&". Similarly for other entities. We need to strip tags like , ,
, and also the stray spaces. We should remove as they are not content? They are spaces; but preserving word-for-word would keep them. However they are not visible; but we can probably drop them as they are formatting artifacts. The instruction earlier said remove stray numbers or formatting artifacts. is a formatting artifact, so we can remove them. Thus we will produce HTML withfor intro paragraphs and general text,
for section headers,
- for list items.
We need to decide what constitutes a section header. The original has many headings wrapped in (sometimes with ). We'll treat each as
. Also the initial paragraph before the list is intro; we can wrap that in
. The list after that is qualifications; we need to decide if that list should be under a heading like "Qualifications" or "Requirements". The original didn't have a heading before the list; it's just a list after the intro paragraph. According to rules, we should use
for section headers like Responsibilities, Qualifications, Requirements, etc. Since there is no explicit heading, we could either treat the list as part of the intro or add a heading? But we must not add content. So we cannot add a heading that wasn't there. So we should keep the list as is, but we need to wrap list items in
- . The intro paragraph before the list is the first
. Then we have the list. After the list, there is a paragraph "How to Apply." which we should turn into
How to Apply.
(keeping the period). Then after that a paragraph with instructions. Then a heading "Health and Safety" ->Health and Safety
then a list. Then many other headings. We need to ensure we don't useor
. Also we must not use or . So we will strip them. We need to preserve the text exactly, including punctuation and spacing. We'll need to reproduce the text as it appears, but without the tags. Let's extract the text pieces. Original snippet:Reporting to the Senior Manager Financial Planning & Analysis the role holder will play a critical role in supporting business performance through budgeting, forecasting, long-range planning (LRP), management reporting, financial modelling, performance analysis, and business partnering.
So the intro paragraph text (excluding tags) is: "Reporting to the Senior Manager Financial Planning & Analysis the role holder will play a critical role in supporting business performance through budgeting, forecasting, long-range planning (LRP), management reporting, financial modelling, performance analysis, and business partnering.The role is responsible for translating financial and operational data into actionable insights that support executive decision-making, capital allocation, strategic planning, and performance management. The successful candidate will possess a strong commercial mindset, advanced financial modelling capabilities, and the ability to influence business decisions through data-driven insights. Key responsibilities align with P&L forecasting, cashflow forecasting, LRP development, scenario analysis, executive communication and business partnering" Note there is a
The role is responsible for translating financial and operational data into actionable insights that support executive decision-making, capital allocation, strategic planning, and performance management. The successful candidate will possess a strong commercial mindset, advanced financial modelling capabilities, and the ability to influence business decisions through data-driven insights. Key responsibilities align with P&L forecasting, cashflow forecasting, LRP development, scenario analysis, executive communication and business partnering
between sentences; we should treat as space? We'll just join with a space. Also there is after
which we ignore. Thus firstwill contain that text. Next we have
- Bachelor’s degree in Finance, Accounting, Economics, Statistics, Business, or related field.
- MBA or master's degree is an added advantage.
- Professional Qualifications: CPA & ACCA
Experience - Minimum 5 years of progressive experience in Financial Planning & Analysis, Commercial Finance, Business Finance, Corporate Finance, or Management Reporting.
- Demonstrated experience in budgeting, forecasting, long-range planning, and financial modelling.
- Experience supporting senior stakeholders and business leaders.
- Experience working with large datasets and complex financial models.
- Telecommunications, Technology, FMCG, Banking, or other large corporate experience is desirable.
- item. Note there is a line inside the third
- : "Professional Qualifications: CPA & ACCA
Experience" This seems malformed: the- contains "Professional Qualifications: CPA & ACCA" then a
before next
then Experience but not closed- . Actually the HTML is broken: after that, they close
then open new- for experience. So we need to interpret: The third list item is "Professional Qualifications: CPA & ACCA". Then there is a line break and the word "Experience" in strong, but likely they intended to start a new list item for Experience. However the given HTML shows:
- Professional Qualifications: CPA & ACCA
Experience- Minimum 5 years... So the
after the strong? Actually they wrote:- Professional Qualifications: CPA & ACCA
then
Experience- Minimum 5 years... So the third item is "Professional Qualifications: CPA & ACCA" plus a line break and the word Experience inside strong, but then they close the li. That seems odd. Probably they meant to have two separate items: one for Professional Qualifications, and then a heading "Experience" (strong) but not a list item. However we must preserve content word-for-word. So we need to output exactly the text as it appears, but without tags. So we need to output: "Professional Qualifications: CPA & ACCA" "Experience" "Minimum 5 years of progressive experience in Financial Planning & Analysis, Commercial Finance, Business Finance, Corporate Finance, or Management Reporting." ... etc. But the "Experience" line appears as a strong tag inside the li, but then they close li and start a new li for the experience description. So the text "Experience" appears as its own line item? Actually the HTML:
- Professional Qualifications: CPA & ACCA
Experience- Minimum 5 years... So after the
of the third item, they start a new- for the experience description. So the "Experience" text is inside the third li, but after a line break and strong. So the third li contains "Professional Qualifications: CPA & ACCA
Experience" which when stripped yields "Professional Qualifications: CPA & ACCAExperience". That seems wrong. But maybe they intended the strong to be a heading outside the list, but mistakenly placed inside. However we must preserve content word-for-word, so we should output exactly the text as it appears between the- and
tags, ignoring inner tags. So we need to extract the text nodes: "Professional Qualifications: CPA & ACCA", then a line break, then "Experience". So combined with a space? Usually we would separate with a space. We'll just join with a space. Thus the third list item text: "Professional Qualifications: CPA & ACCA Experience". Then the fourth list item is "Minimum 5 years of progressive experience in Financial Planning & Analysis, Commercial Finance, Business Finance, Corporate Finance, or Management Reporting." etc. We'll follow that. After the ul, we have:How to Apply. If you feel that you are up to the challenge and possess the necessary qualification and experience, kindly proceed to create/ update your candidate profile on the recruitment portal and then Click on the apply button. Remember to attach your resume.
So heading: "How to Apply." (including period). Then paragraph: "If you feel that you are up to the challenge and possess the necessary qualification and experience, kindly proceed to create/ update your candidate profile on the recruitment portal and then Click on the apply button. Remember to attach your resume." Note there is a
and after. Next:Health and Safety
- Uphold the company code of conduct, policies and procedures, ensuring integrity and accountability in every aspect of your work.
- All employees have a responsibility to adhere to safety, health, and wellbeing policies, guidelines and procedures in all actions and decisions.
Financial Planning & Forecasting- Support the preparation and consolidation of annual budgets, quarterly forecasts, and long-range plans (LRPs).
- Develop and maintain integrated financial models covering revenue, operating costs, EBITDA, profitability, cashflow, and capital expenditure.
- Coordinate forecast submissions across business units and ensure alignment to strategic objectives.
- Perform driver-based forecasting and sensitivity analysis to evaluate financial outcomes under various scenarios.
- Monitor forecast accuracy and provide recommendations to improve planning effectiveness.
So heading "Financial Planning & Forecasting". Then list items. Next:Management Reporting & Performance Analysis
- Produce monthly, quarterly, and annual management reports.
- Deliver insightful variance analysis comparing Actuals, Budget, Forecast, and Prior Year performance.
- Identify key business drivers impacting revenue growth, profitability, cashflow, and return on investment.
- Develop executive-level dashboards and KPI reporting.
Present financial performance trends and implications to senior management.
inside the li. We need to extract text: "Present financial performance trends and implications to senior management." plus maybe a after. We'll ignore inner
tags and just take the text. Thus list items: 1) Produce monthly, quarterly, and annual management reports. 2) Deliver insightful variance analysis comparing Actuals, Budget, Forecast, and Prior Year performance. 3) Identify key business drivers impacting revenue growth, profitability, cashflow, and return on investment. 4) Develop executive-level dashboards and KPI reporting. 5) Present financial performance trends and implications to senior management. Next:
Business Partnering
- Partner with Commercial, Technology, Operations, Enterprise, and Support Functions to provide financial decision support.
- Challenge assumptions and ensure business initiatives are supported by robust financial analysis.
- Support pricing reviews, business cases, investment proposals, and strategic initiatives.
- Influence stakeholders through data-driven insights and recommendations.
- Act as a trusted advisor on performance management and financial implications of business decisions.
Long-Range Planning & Strategy Support- Support development and maintenance of multi-year strategic plans and long-range financial outlooks.
- Assess business opportunities, investment cases, and growth initiatives.
- Translate strategic initiatives into financial plans and measurable performance targets.
- Evaluate revenue growth, margin expansion, cash generation, and investment affordability.
So heading "Business Partnering", list items. Then heading "Long-Range Planning & Strategy Support", list items. Next:Cashflow & Investment Analysis
- Develop and maintain cashflow forecasts and liquidity projections.
- Monitor working capital performance and identify improvement opportunities.
- Support capital expenditure planning, prioritization, and investment reviews.
- Evaluate funding requirements and free cashflow generation.
- Perform post-investment reviews to assess business case realization.
Heading "Cashflow & Investment Analysis", list items. Next:Financial Modelling & Scenario Analysis
- Build robust and auditable financial models.
- Conduct sensitivity analysis and scenario planning to assess financial risk and opportunities.
- Evaluate downside and upside scenarios and recommend mitigation actions.
- Support strategic decision-making through advanced modelling techniques.
Heading "Financial Modelling & Scenario Analysis", list items. Next:Continuous Improvement
- Drive improvements in FP&A processes, tools, and reporting capabilities.
- Enhance automation and data analytics within planning and reporting processes.
- Support finance transformation initiatives and adoption of best practices.
- Improve data quality, consistency, and governance across planning cycles.
Heading "Continuous Improvement", list items. Next:Core competencies, knowledge and experience:
Technical Competencies
Financial Expertise- Advanced financial modelling
- Budgeting and forecasting
- Long-range planning (LRP)
- Management reporting
- Variance analysis
- Business case development
- Capital investment analysis
- Cashflow forecasting
- Scenario and sensitivity analysis
Systems & Tools
- Advanced Microsoft Excel
- ERP and HFM platforms (e.g., Oracle, SAP, Hyperion, OneStream, Anaplan)
- PowerPoint and executive presentation development
Behavioural Competencies
- Commercial Acumen: Ability to interpret business performance drivers and convert analysis into actionable recommendations.
- Analytical Thinking: Strong problem-solving capability with attention to detail and ability to manage ambiguity.
- Business Partnering: Confidence to challenge assumptions and influence stakeholders without direct authority.
- Communication: Ability to communicate complex financial concepts to
- . The intro paragraph before the list is the first
- for list items.
We need to decide what constitutes a section header. The original has many headings wrapped in (sometimes with ). We'll treat each as
- . Likely they intend we should keep the text content but discard formatting tags like , ,
- . No other tags like , ,
How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝Let jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Add your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.