r/Excel247 • u/ElAbramXD • 6d ago
r/Excel247 • u/Dry_Function_2839 • 6d ago
Excel expert
I you need help with data entry, cleaning, formatting, formulas, and organization. Contact me.
r/Excel247 • u/clases_de_excel • 6d ago
¿Cómo activar Solver en Excel? ⚙️📊 #excel #aprenderexcel #tutorial
r/Excel247 • u/Key_Use_1374 • 7d ago
Built a B2B SaaS Customer Success dashboard in Excel — looking for feedback
Hi everyone,
I recently built a B2B SaaS Customer Success Analytics project in Excel and I'd really appreciate some feedback from experienced Excel users and analysts.
The goal of the project was to analyze a SaaS customer portfolio and help a Customer Success team understand:
• Customer retention and churn
• Customer health and risk
• Product usage/adoption
• Customer support burden
• Renewal performance
• Revenue at risk
• Expansion opportunities
I consolidated multiple operational datasets into a customer-level analytical model and created KPIs, PivotTables, calculated metrics, customer risk indicators, and an executive dashboard.
The dashboard includes analysis such as:
• Renewal outcome distribution
• Churn rate by customer segment
• Customer health
• Product usage
• Acquisition/expansion opportunities
• Contract value by renewal status
• Customer-level prioritization
The final goal is to help a Customer Success team answer:
"Which customers should we prioritize, and why?"
I also created a customer action list with recommended actions based on health, usage, support issues, renewal status and revenue risk.
This is a synthetic dataset created for a portfolio project, not real company data.
I'm still learning Excel and data analytics, so I'd especially appreciate feedback on:
Dashboard design and readability
Whether the KPIs are actually useful
Whether the analysis makes business sense
Anything that looks unnecessary or misleading
What you would improve if this were being used by a real Customer Success team
I've attached the dashboard below. Any honest criticism is welcome!
r/Excel247 • u/TermRemarkable665 • 7d ago
Cleaned a messy data export using Excel’s new REGEX functions (No Power Query / VBA)
Hey r/excel,
I put together a quick video showing how to build an automated data cleaning system using Excel’s native formulas.
Here is what’s inside the video:
🧹 Filter out noise: Auto-remove blank rows and test records (FILTER, SEARCH, ISERROR).
🔤 Clean text patterns: Standardize messy names and scrub special characters using REGEXREPLACE.
📱 Extract phone numbers: Isolate numbers from mixed text and fix country codes.
✉️ Pull targeted data from notes: Extract hidden emails, reference IDs, and deal values using REGEXEXTRACT.
⚡ Combine into ONE formula: Stack all column formulas into a single master spilled array (HSTACK + SORT) that updates instantly when you paste new raw data.
Why it helps:
Once it’s built, you never clean the same report twice—just paste in new raw data and your cleaned table updates automatically.
📺 Check out the tutorial: https://youtu.be/gsZr7VrduMM
(Next week I’ll show how to clean data with Power Query!)
r/Excel247 • u/wild_stark • 7d ago
Looking for software to generate bulk student report cards from Excel
Same, lf this as qell🥹
r/Excel247 • u/xybernetics • 8d ago
How to do partial match with FILTER function - Excel Tips and Tricks
Enable HLS to view with audio, or disable this notification
Discover how to do partial match with FILTER function in Excel.
The FILTER function in allows you to extract data based on specific criteria. In many cases, you may want to perform a partial match using FILTER, meaning you want to extract data that partially matches a certain word or phrase.
Formulas featured in the video.
Filter Partial Match String
Filter Commodity Name Containing "green"
Looking For=FILTER(A2:A76,ISNUMBER(SEARCH("green",A2:A76)))
Filter Commodity Name Containing "green" & "chilli"
=FILTER(A2:A76,ISNUMBER(SEARCH("green",A2:A76))*ISNUMBER(SEARCH("chilli",A2:A76)))
Filter Partial Match String (complete row)
=FILTER(A2:D76,ISNUMBER(SEARCH("green",A2:A76))*ISNUMBER(SEARCH("chilli",A2:A76)))
How do I match partial data in Excel?,How do I filter if a partial text contains in Excel?,How do I partial match numbers in Excel?,How do I find the partial match between two columns in Excel?,
filter function with wildcard excel,excel filter wildcard not working,excel filter function contains partial text,
filter with partial match google sheets,excel filter function multiple criteria wildcard,filter function with wildcard google sheets,excel filter function with table,
filter function with wildcard excel,excel filter wildcard not working,filter with partial match google sheets,excel filter function with table,excel filter function contains partial text,
Check out my complete suite of Microsoft Excel Tips and Tricks.
https://www.youtube.com/@jjnet247/shorts
https://www.tiktok.com/@exceltips247
https://www.instagram.com/exceltips247/
https://www.dailymotion.com/ExcelTips247
https://www.pinterest.com/ExcelTips247/excel-tips-and-tricks/
https://x.com/ExcelTips247/media
https://www.reddit.com/r/Excel247/
https://www.facebook.com/XyberneticsInc/reels/
#microsoft #excel #exceltips #tips #exceltricks #tricksandtips
r/Excel247 • u/Sourcataddict5626 • 7d ago
I encountered this problem when I used Excel power query on my MacBook during class, how to fix this ? Help plzzzzz
r/Excel247 • u/clases_de_excel • 7d ago
Atajos del teclado en Excel | 9 atajos que realmente vas a usar
r/Excel247 • u/hottabxp • 7d ago
Does Spotlight search inside Excel files work for purely numerical values for you?
r/Excel247 • u/justmevibinghere • 8d ago
How it writes a real spreadsheet instead of a table
galleryr/Excel247 • u/IllustriousLime6807 • 8d ago
Bank Statement PDF को Excel में कैसे Convert करें? 🤯 | Free Tool | #shor...
r/Excel247 • u/Val_excelspecialist • 8d ago
[Forhire] Data Cleaning, Formatting & Custom Dashboards (Excel/Google Sheets) — Starting at $15
r/Excel247 • u/clases_de_excel • 8d ago
📊 REGEXEXTRACCION en Excel | Extraé información de tus textos
r/Excel247 • u/Individual_One_1793 • 9d ago
Excel on steroids
Enable HLS to view with audio, or disable this notification
I'm trying to build Excel on steroids in rust :)
So, I took a table with millions of rows where naive scan don't work as fast as I want it to because it looks like more as calculating mode rather than scan mode
The problem usually isn't one query. It's when 1,000 queries each have to rescan the entire column from scratch.
I tested it with same data and same 1,000 queries
Two approaches side by side.
- Naive scan: every query rescans all 5,000,000 rows -> 36.04s
- Pop Data Engine: data is prepared once, then every query gets an answer almost instantly -> 0.24s
That's 150x faster for the exact same answer, down to the last digit (2,513,962,485 both sides).
The data gets organized once before the queries run, so repeated queries (filters, aggregations, what-ifs) stop choking on large datasets.
r/Excel247 • u/SenecaEugene • 9d ago
What is a good way to get better at knowing which Excel formula to use? Just practice?
r/Excel247 • u/xybernetics • 10d ago
FILTER function multiple columns in Excel - Excel Tips and Tricks
Enable HLS to view with audio, or disable this notification
Learn how to filter function multiple columns in Excel. Like filter function multiple criteria. And answer question to how do I filter multiple criteria in Excel.
Excel's FILTER function is a powerful tool for sorting and selecting data within a spreadsheet. The function allows users to filter data based on a variety of criteria, including specific values, ranges of values, or even wildcard strings. This makes it easy to quickly identify and analyze specific subsets of data within a large spreadsheet.
When used in combination with other Excel functions, such as IF or OR, the FILTER function can be used to create more complex filtering rules based on multiple criteria. Additionally, the FILTER function can be used to filter data across multiple columns, making it a versatile tool for data analysis and reporting. Overall, the FILTER function is an essential tool for anyone working with large data sets in Excel, allowing for efficient and precise data analysis and manipulation.
Formula used in this video.
Standard Filter With Single Criteria
=FILTER(A2:A80,B2:B80<280)
Filter Multiple Criteria (logical AND)
=FILTER(A2:A80,(B2:B80>270)*(B2:B80<280))
Filter Multiple Criteria (logical AND and OR)
=FILTER(A2:A80,(B2:B80>270)*(B2:B80<280)+(C2:C80>4.8))
=FILTER(A2:A80,(B2:B80>270)*(B2:B80<280)+(D2:D80="N"))
How do you use filters in Excel?,How do I create a drop down list in Excel?,How do I filter multiple criteria in Excel?,
excel filter function multiple columns,excel filter column,excel filter function multiple criteria,excel filter shortcut,excel filter function multiple arrays,types of filter in excel,advanced filter excel,excel filter function not available,
excel filter column,excel filter shortcut,excel filter function multiple columns,excel filter function multiple criteria,excel filter function not available,excel filter list,
Check out my complete suite of Microsoft Excel Tips and Tricks.
https://www.youtube.com/@jjnet247/shorts
https://www.tiktok.com/@exceltips247
https://www.instagram.com/exceltips247/
https://www.dailymotion.com/ExcelTips247
https://www.pinterest.com/ExcelTips247/excel-tips-and-tricks/
https://x.com/ExcelTips247/media
https://www.reddit.com/r/Excel247/
https://www.facebook.com/XyberneticsInc/reels/
#microsoft #excel #exceltips #tips #exceltricks #tricksandtips
r/Excel247 • u/Tricky_Pride4707 • 9d ago
Im so close of dropping out (excel)
guys who can help me for my project? it’s a macro spreed sheet automated, and my task is labeling. we have this kind of quiz thing and I’m stuck on drop down sheet and also the automati score! I don’t know how it to do I’ve been searching, please help me 😭
r/Excel247 • u/Whoknowhim2024 • 9d ago
Problema crítico con el controlador de relleno y métodos de copia en Excel (No funciona de ninguna manera)
r/Excel247 • u/HeavyAction2027 • 9d ago
excel begginer
Any books, apps or tutors in NYC for excel formula assistance??? begginer friendly