The Art of Influence: Leadership Skills for Audit, Risk & GRC Professionals

A highly practical session on how to lead with greater influence, communicate with impact and build the stakeholder relationships that drive real change.

What is this workshop about?

Influence is one of the most critical leadership capabilities in today’s organisations, yet many professionals are expected to influence stakeholders, drive change and navigate difficult conversations without formal authority.This highly interactive and practical workshop explores how Audit, Risk, Governance and business professionals can strengthen credibility, communication, executive presence and stakeholder influence to become more impactful and trusted strategic partners.Far beyond a traditional webinar, the session combines real-world leadership insight, practical frameworks, interactive exercises, facilitated discussion and reflection to help participants apply the concepts immediately within their own professional environment.

What will you learn?

  • What is influence really

  • How influence is built in modern organisations

  • Influencing without relying on hierarchy or positional authority

  • Building trust and credibility with stakeholders

  • Communicating difficult messages with confidence and diplomacy

  • Navigating resistance and challenging conversations

  • Strengthening executive presence and strategic impact

  • Moving from technical expert to trusted advisor and partner

  • 2 separate sessions.

  • Monday 6 July 2026 & Tuesday 29 September

  • 10:00 London (BST) | 11:00 CET | 12:00 KSA | 13:00 GST | 05:00 EST

  • £299 per person

  • 3 CPE credits


By booking, you agree to receive essential emails about this course, including joining instructions, reminders and follow-up materials. We may also send occasional RB Advisory insights and updates about similar courses and services. You can opt out at any time.


Experience that translates. Advice that moves the dial.

RB Advisory & Consultancy is a boutique consultancy specialising in Governance, Risk Management and Internal Audit. Based in London and operating globally, we work with organisations from high-growth scale-ups to established multi-billion-pound businesses across regulated and non-regulated sectors.What sets us apart is lived experience. Rania Bejjani has sat in the seat of the CAE and CRO, stood in front of Boards and Audit Committees and led diverse global teams through complex change. Our advice is not theoretical. It is practical, credible and grounded in what truly moves the dial, combined with the strategic thinking, commercial acumen and human-centred approach that enables leaders to step up, build trust and create lasting impact.


About Rania Bejjani

Rania Bejjani is a former three-time Chief Audit & Risk Executive, global Board and executive advisor, strategic leadership mentor and international speaker with 29 years of international cross-sector experience.She advises Boards, CEOs, CFOs, Audit Committees, Chief Audit Executives, Chief Risk Officers and senior leaders on strengthening governance, elevating Internal Audit and Risk to strategic partnership, building high-performance cultures and enabling resilient organisations.Rania combines deep technical expertise in Audit, Risk, Governance and GRC with strategic thinking, commercial acumen, Board-level experience and a warm, human-centred leadership style. Her work helps leaders and teams build trust, increase influence, shift perceptions and create lasting impact.She has mentored over 25 Audit and Risk leaders to step up, stand out and succeed.

Audit Beacon Award 2025 · Woman to Watch in GRC & Risk 2026 · Shortlisted Women in GRC Awards 2026


Join 4,000+ Board Members and Leaders in Audit, Risk & Governance globally

No spam. Just clear, actionable thinking.

By clicking "subscribe" you consent to receive newsletter updates via email.

Subscribe to my Newsletter

* indicates required
(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[5]='MMERGE5';ftypes[5]='text';fnames[6]='COMPANY';ftypes[6]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[4]='PHONE';ftypes[4]='phone';fnames[3]='CITY';ftypes[3]='text';}(jQuery));var $mcj = jQuery.noConflict(true); // SMS Phone Multi-Country Functionality if(!window.MC) { window.MC = {}; } window.MC.smsPhoneData = { defaultCountryCode: 'GB', programs: [], smsProgramDataCountryNames: [] }; function getCountryUnicodeFlag(countryCode) { return countryCode.toUpperCase().replace(/./g, (char) => String.fromCodePoint(char.charCodeAt(0) + 127397)) }; // HTML sanitization function to prevent XSS function sanitizeHtml(str) { if (typeof str !== 'string') return ''; return str .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"') .replace(/'/g, ''') .replace(/\//g, '/'); } // URL sanitization function to prevent javascript: and data: URLs function sanitizeUrl(url) { if (typeof url !== 'string') return ''; const trimmedUrl = url.trim().toLowerCase(); if (trimmedUrl.startsWith('javascript:') || trimmedUrl.startsWith('data:') || trimmedUrl.startsWith('vbscript:')) { return '#'; } return url; } const getBrowserLanguage = () => { if (!window?.navigator?.language?.split('-')[1]) { return window?.navigator?.language?.toUpperCase(); } return window?.navigator?.language?.split('-')[1]; }; const getBrowserLanguageCode = () => { const lang = window?.navigator?.language; if (!lang) { return 'en'; } return lang.split('-')[0].toLowerCase(); }; function getSmsProgramForCountryAndLanguage(smsProgramData, countryCode, languageCode) { if (!smsProgramData || smsProgramData.length === 0 || !countryCode) { return null; } var entriesForCountry = smsProgramData.filter( function(p) { return p?.countryCode === countryCode; } ); if (entriesForCountry.length === 0) { return null; } if (entriesForCountry.length === 1) { return entriesForCountry[0]; } var langLower = languageCode.toLowerCase(); var exactMatch = entriesForCountry.find( function(p) { return p?.language?.toLowerCase() === langLower; } ); if (exactMatch) { return exactMatch; } var englishFallback = entriesForCountry.find( function(p) { return p?.language?.toLowerCase() === 'en'; } ); return englishFallback || entriesForCountry[0]; } function getDefaultCountryProgram(defaultCountryCode, smsProgramData) { if (!smsProgramData || smsProgramData.length === 0) { return null; } var browserCountryCode = getBrowserLanguage(); var browserLangCode = getBrowserLanguageCode(); if (browserCountryCode) { var match = getSmsProgramForCountryAndLanguage(smsProgramData, browserCountryCode, browserLangCode); if (match) { return match; } } if (defaultCountryCode) { var match = getSmsProgramForCountryAndLanguage(smsProgramData, defaultCountryCode, browserLangCode); if (match) { return match; } } return smsProgramData[0]; } function updateSmsLegalText(countryCode, fieldName) { if (!countryCode || !fieldName) { return; } var programs = window?.MC?.smsPhoneData?.programs; if (!programs || !Array.isArray(programs)) { return; } var browserLangCode = getBrowserLanguageCode(); var program = getSmsProgramForCountryAndLanguage(programs, countryCode, browserLangCode); if (!program || !program.requiredTemplate) { return; } var smsConsentHtmlRenderingFixEnabled = true; const legalTextElement = document.querySelector('#legal-text-' + fieldName); if (!legalTextElement) { return; } const divRegex = new RegExp(']*>', 'gi'); const blockWrapperRegex = new RegExp(']*>', 'gi'); const fullAnchorRegex = new RegExp('', 'g'); const anchorRegex = new RegExp('(.*?)'); const template = smsConsentHtmlRenderingFixEnabled ? program.requiredTemplate .replace(/<\/p>\s*]*>/gi, ' ') .replace(blockWrapperRegex, '') : program.requiredTemplate.replace(divRegex, ''); legalTextElement.textContent = ''; const parts = template.split(/(.*?<\/a>)/g); parts.forEach(function(part) { if (!part) { return; } const anchorMatch = part.match(/(.+?)<\/a>/); if (anchorMatch) { const linkElement = document.createElement('a'); linkElement.href = sanitizeUrl(anchorMatch[1]); linkElement.target = anchorMatch[2] ? sanitizeHtml(anchorMatch[2]) : '_blank'; linkElement.rel = 'noopener noreferrer'; linkElement.textContent = sanitizeHtml(anchorMatch[3]); legalTextElement.appendChild(linkElement); } else { legalTextElement.appendChild(document.createTextNode(part)); } }); } function generateDropdownOptions(smsProgramData) { if (!smsProgramData || smsProgramData.length === 0) { return ''; } var programs = true ? smsProgramData.filter(function(p, i, arr) { return arr.findIndex(function(q) { return q.countryCode === p.countryCode; }) === i; }) : smsProgramData; return programs.map(program => { const flag = getCountryUnicodeFlag(program.countryCode); const countryName = getCountryName(program.countryCode); const callingCode = program.countryCallingCode || ''; // Sanitize all values to prevent XSS const sanitizedCountryCode = sanitizeHtml(program.countryCode || ''); const sanitizedCountryName = sanitizeHtml(countryName || ''); const sanitizedCallingCode = sanitizeHtml(callingCode || ''); return ''; }).join(''); } function getCountryName(countryCode) { if (window.MC?.smsPhoneData?.smsProgramDataCountryNames && Array.isArray(window.MC.smsPhoneData.smsProgramDataCountryNames)) { for (let i = 0; i < window.MC.smsPhoneData.smsProgramDataCountryNames.length; i++) { if (window.MC.smsPhoneData.smsProgramDataCountryNames[i].code === countryCode) { return window.MC.smsPhoneData.smsProgramDataCountryNames[i].name; } } } return countryCode; } function getDefaultPlaceholder(countryCode) { if (!countryCode || typeof countryCode !== 'string') { return '+1 000 000 0000'; // Default US placeholder } var mockPlaceholders = [ { countryCode: 'US', placeholder: '+1 000 000 0000', helpText: 'Include the US country code +1 before the phone number', }, { countryCode: 'GB', placeholder: '+44 0000 000000', helpText: 'Include the GB country code +44 before the phone number', }, { countryCode: 'CA', placeholder: '+1 000 000 0000', helpText: 'Include the CA country code +1 before the phone number', }, { countryCode: 'AU', placeholder: '+61 000 000 000', helpText: 'Include the AU country code +61 before the phone number', }, { countryCode: 'DE', placeholder: '+49 000 0000000', helpText: 'Fügen Sie vor der Telefonnummer die DE-Ländervorwahl +49 ein', }, { countryCode: 'FR', placeholder: '+33 0 00 00 00 00', helpText: 'Incluez le code pays FR +33 avant le numéro de téléphone', }, { countryCode: 'ES', placeholder: '+34 000 000 000', helpText: 'Incluya el código de país ES +34 antes del número de teléfono', }, { countryCode: 'NL', placeholder: '+31 0 00000000', helpText: 'Voeg de NL-landcode +31 toe vóór het telefoonnummer', }, { countryCode: 'BE', placeholder: '+32 000 00 00 00', helpText: 'Incluez le code pays BE +32 avant le numéro de téléphone', }, { countryCode: 'CH', placeholder: '+41 00 000 00 00', helpText: 'Fügen Sie vor der Telefonnummer die CH-Ländervorwahl +41 ein', }, { countryCode: 'AT', placeholder: '+43 000 000 0000', helpText: 'Fügen Sie vor der Telefonnummer die AT-Ländervorwahl +43 ein', }, { countryCode: 'IE', placeholder: '+353 00 000 0000', helpText: 'Include the IE country code +353 before the phone number', }, { countryCode: 'IT', placeholder: '+39 000 000 0000', helpText: 'Includere il prefisso internazionale IT +39 prima del numero di telefono', }, { countryCode: 'NO', placeholder: '+47 000 00 000', helpText: 'Inkluder NO landskode +47 før telefonnummeret', }, { countryCode: 'SE', placeholder: '+46 00 000 00 00', helpText: 'Inkludera SE landskod +46 före telefonnumret', }, { countryCode: 'DK', placeholder: '+45 00 00 00 00', helpText: 'Inkluder DK landekode +45 før telefonnummeret', }, { countryCode: 'FI', placeholder: '+358 00 000 0000', helpText: 'Sisällytä FI-maakoodi +358 ennen puhelinnumeroa', }, { countryCode: 'EE', placeholder: '+372 0000 0000', helpText: 'Lisage EE riigikood +372 telefoninumbri ette', }, { countryCode: 'PL', placeholder: '+48 000 000 000', helpText: 'Podaj numer kierunkowy PL +48 przed numerem telefonu', }, { countryCode: 'SK', placeholder: '+421 000 000 000', helpText: 'Pred telefónne číslo uveďte kód krajiny SK +421', }, { countryCode: 'LV', placeholder: '+371 0000 0000', helpText: 'Iekļaujiet LV valsts kodu +371 pirms tālruņa numura', }, { countryCode: 'LT', placeholder: '+370 0000 0000', helpText: 'Įtraukite LT šalies kodą +370 prieš telefono numerį', }, { countryCode: 'GR', placeholder: '+30 000 000 0000', helpText: 'Συμπεριλάβετε τον κωδικό χώρας GR +30 πριν από τον αριθμό τηλεφώνου', }, { countryCode: 'PT', placeholder: '+351 000 000 000', helpText: 'Inclua o código de país PT +351 antes do número de telefone', }, { countryCode: 'HR', placeholder: '+385 00 000 0000', helpText: 'Uključite HR pozivni broj države +385 prije telefonskog broja', }, { countryCode: 'SI', placeholder: '+386 00 000 000', helpText: 'Vključite SI kodo države +386 pred telefonsko številko', }, { countryCode: 'IS', placeholder: '+354 000 0000', helpText: 'Láttu IS landsnúmer +354 fylgja á undan símanúmerinu', }, { countryCode: 'LU', placeholder: '+352 000 000 000', helpText: 'Incluez le code pays LU +352 avant le numéro de téléphone', }, { countryCode: 'MC', placeholder: '+377 00 00 00 00', helpText: 'Incluez le code pays MC +377 avant le numéro de téléphone', }, { countryCode: 'AD', placeholder: '+376 000 000', helpText: 'Incloeu el codi de país AD +376 abans del número de telèfon', }, { countryCode: 'JE', placeholder: '+44 0000 000000', helpText: 'Include the JE country code +44 before the phone number', }, { countryCode: 'IM', placeholder: '+44 0000 000000', helpText: 'Include the IM country code +44 before the phone number', }, { countryCode: 'GG', placeholder: '+44 0000 000000', helpText: 'Include the GG country code +44 before the phone number', }, { countryCode: 'AL', placeholder: '+355 00 000 0000', helpText: 'Përfshini kodin e vendit AL +355 para numrit të telefonit', }, { countryCode: 'SM', placeholder: '+378 0000 000000', helpText: 'Includere il prefisso internazionale SM +378 prima del numero di telefono', }, { countryCode: 'FO', placeholder: '+298 000000', helpText: 'Inkluder FO landekode +298 før telefonnummeret', }, { countryCode: 'MT', placeholder: '+356 0000 0000', helpText: 'Include the MT country code +356 before the phone number', }, { countryCode: 'LI', placeholder: '+423 000 0000', helpText: 'Fügen Sie vor der Telefonnummer die LI-Ländervorwahl +423 ein', }, { countryCode: 'GI', placeholder: '

Terms and Privacy

Terms of UseBy subscribing to our newsletter or registering for our events, you agree to the following terms.Purpose of the Service
We provide insights, updates, and information related to our webinars, services, and publications. Our content is for informational purposes only.
Use of Content
All emails, materials, and resources we share are owned by us. You may not copy, distribute, or republish our content without prior permission.
Subscriber Responsibilities
You agree to provide accurate information when subscribing or registering. You also agree not to misuse our content or services in any unlawful or harmful way.
No Guarantees
While we aim to deliver high‑quality insights, we do not guarantee the accuracy, completeness, or specific outcomes resulting from our content.
Unsubscribing
You may unsubscribe at any time using the link included in our emails. Once unsubscribed, you will no longer receive communications from us.
Limitation of Liability
We are not liable for any losses or damages arising from your use of our content, website, or services.
Changes to These Terms
We may update these Terms from time to time. Continued use of our services indicates acceptance of the latest version.
Contact Us
If you have questions about these Terms, please contact us at:
[email protected]


Privacy Policy:
We value your privacy and are committed to protecting your personal information. This policy explains how we collect, use, and safeguard your data.
Information We Collect:
Email addresses provided through our newsletter signup form or event registration.
Optional details you may share (e.g., name, company, role).
How We Use Your Information:
To send you insights, offers, and updates about our webinars and services.
To manage event registrations and provide confirmation details.
To improve our communications and offerings.
Legal Basis for Processing:
We process your data based on your explicit consent (GDPR Article 6(1)(a)).
You may withdraw consent at any time by unsubscribing from our emails.
Sharing of Information:
We do not sell or share your personal data with third parties.
We may use trusted service providers (e.g., Mailchimp, Zoom, Stripe) to deliver services securely.
Data Retention:
We retain your information only as long as necessary to provide our services or until you unsubscribe.
Your Rights:
Under GDPR, you have the right to:
Access the data we hold about you.
Request correction or deletion of your data.
Withdraw consent at any time.
Contact Us:
If you have questions about this policy or wish to exercise your rights, please contact us at: [email protected]