How to Craft an Effective Strategic Plan

Unterrichtet von Ralf-Lothar Moeller

Most businesses have a Mission Statement that isn’t working. Instead of moving people forward, it’s making people bored. In this course you will learn how to transform your Mission Statement into a set of Guiding Principles that will motivate you and your whole team. Guiding Principles include a Mission Statement to drive growth, Key Characteristics your team can live into to accomplish your mission, and Critical Actions every member of your team can perform to move your business closer to the mission. When your business becomes a business on a mission, everyone feels like they are part of an important story and, more than that, feel their skills and hard work matter.






Bootstrap demo body { background-color: #f0f1f2; height:100vh; }

#player-nav { background-color: #fff; position:relative; top:20px; padding-left:0!important; border-radius:60px; }

.nav-link { font-weight:bold; }

.nav-item { margin-left:30px; }

.btn { border-radius:30px; }

.card { border-radius:50px; border:none; padding:20px; }


Entscheidung Profit

01 First Video
1:23

02 Second Video
2:34

Erfolg hinterlässt Spuren

01 First Video
1:23

02 Second Video
2:34

Die ewigen Regeln des Geldes

01 First Video
1:23

02 Second Video
2:34

Die Profit Masterfragen

01 First Video
1:23

02 Second Video
2:34

Der Masterplan

01 First Video
1:23

02 Second Video
2:34

Die Millionärsformel

01 First Video
1:23

02 Second Video
2:34

Ressourcen


FÜHRUNGSPRINZIPIEN
ARBEITSMAPPE

Watch the Daily Video.
Read The Daily Entry.

Get Business Made Simple the book.
GET THE BOOK
I already bought the book.

let domain = window.location.origin; if (domain === 'http://geld-machen.de') { domain = 'http://geld-machen.de/wp-content/uploads/smgm-video-player'; } else if (domain === 'http://localhost') { domain = 'http://localhost/smgm-video-player'; }

const step = '1';

// Fetch additional content based on the step and video parameters const fetchContent = domain + '/player-content' + '/' + step + '/1.html'; fetch(fetchContent) .then(response => response.text()) .then(html => { const parser = new DOMParser(); const doc = parser.parseFromString(html, "text/html");

// Mapping ids from the fetched content to the corresponding container on the main page const idMappings = { 'navbar': 'navbarSupportedContent', };

Object.entries(idMappings).forEach(([sourceId, targetId]) => { const content = doc.getElementById(sourceId); if (content) { document.getElementById(targetId).appendChild(content); } }); }) .catch(error => { console.error('Failed to load and parse content:', error); });