ADVERTISEMENT

Navigating the future of generations

Published Jun 26, 2025 12:01 am  |  Updated Jun 24, 2025 10:46 am
Ever wonder why there are so many generations in the workplace today? Decades ago, there were only three defined generations: Top Executive, Manager, and Staff. Most promotions were based on seniority. But nowadays, a staff member doesn't have to be a junior or young employee; they can be in their mid-thirties, forties, or even more senior. Age discrimination is no longer the norm; promotions are based on one's capabilities. A month ago, when I went to the U.S., I saw seniors, probably in their late 50s, working as cashiers, cleaners, and sales representatives. As long as you're capable, you can provide value to an organization, and your experience is something the younger generation can't match.
On the other hand, I see younger people (as young as Generation Z) working in coffee shops, and these young people are also making an impact in offices.
One of my favorite authors, David Jeremiah, also asked the same question in his writings: Why the increase in generations alive at the same time? His simple answer is because people are living longer than they did centuries ago. This isn't just in the United States but all over the globe, especially in the blue zones. If you're not familiar with blue zones, I suggest you look them up.
Every generation has its flaws, but I want to focus more on the positive aspects and how we, as financial executives or leaders in the workplace, can maximize these positive traits in every office and organization we manage. There are actually nine defined generations, but some are no longer in the workforce or haven't entered it yet. The first, popularly known as The Lost Generation (born 1883-1900), are mostly no longer with us. David Jeremiah described them as being buffeted by severe winds of calamity and change because they experienced World War I, an economic depression, and the Spanish flu, which killed thousands. Then there's The Silent Generation (born 1928-1945). They're called silent because they rarely spoke out against the government and were more conformist. Then came the famous Baby Boomer Generation (born 1946-1964). They're called this because the low birth rates of the prior generation due to World War II were reversed by a baby boom, leading to a surge in population. These are the ones in top positions in companies, businesses, and other organizations today. It was in this generation that the term workaholic was first coined because of their strong work ethic, loyalty to their company, and their resourcefulness and adaptability to technological advancements. In fact, I know Baby Boomers who are more tech-savvy than their younger staff.
The younger generations include Generation X (born 1965-1980), who are more inclined toward work-life balance, sometimes preferring to work independently, and can work with technology outside the office, though they can also work face-to-face. One reason for this could be their desire for a hands-on approach to caring for their children and family, perhaps because they experienced having workaholic parents.
Next comes Generation Y, or Millennials (born 1981-1996), a technologically savvy generation, having been born during the advent of the internet, smartphones, emails, social media, and so on. They work better in teams and, like Generation X, prioritize work-life balance, seeking work that aligns with their values and where they can make positive contributions. They adapt easily to technology and can assist more senior employees with tech concerns.
Generation Z (born 1997-2009), despite not all being of voting age, are politically aware and were born into a technology-saturated environment. They are also environmentally conscious and advocate for sustainability. They value diversity and are digital experts.
Generation Alpha and Beta are not yet in the workplace, so I'll skip these generations for now.
I'd like to emphasize that the above are just typical characteristics and don't necessarily reflect on every individual. The most important thing to remember is that we shouldn't judge a person by what generation they belong to, but rather for their uniqueness.
Wilma Miranda is a Managing Partner of Inventor, Miranda & Associates, CPAs and a member of the Board of Directors of KPS Outsourcing, Inc. The views expressed herein do not necessarily reflect the opinion of these institutions.

Related Tags

Financial Executives Institute of the Philippines (FINEX)
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.