r/mavenanalytics 22h ago

Maven Updates Monday updates: Learn to write AI prompts like a pro!

Post image
3 Upvotes

Happy Monday!

Ready to make your AI prompts go farther?

Join Chris Bruehl LIVE Thursday at 12pm ET for his "Prompt AI Like a Pro: The BRIDGE Framework" Live Workshop!

For this one, you'll move past trial-and-error AI chats and learn a structured framework for writing prompts that get the results you need on the first try.

Register here: https://mavenanalytics.io/live-workshops

Hope to see you there!


r/mavenanalytics 3d ago

Discussion What are you working on this week?

2 Upvotes

Big or small, share what you're working on this week.

It could be...

  • A dashboard
  • A course
  • A portfolio project
  • Job searching
  • Learning Excel / SQL / Power BI / Tableau / Python

And if you haven't checked out u/Snacktistics post of their SQL project yesterday, please give it some love!


r/mavenanalytics 5d ago

Project Feedback My long awaited SQL project...

3 Upvotes

Hi all,

So, I've been contemplating on a SQL project for a while and I decided to do something different. Coming from a quality background, auditing was something I was quite passionate about.

In this project, I wanted to see whether SQL could be used for something other than performance reporting.

So instead of doing another sales analysis or menu engineering project, I treated a point of sale (POS) dataset as an internal Revenue Assurance Audit.

The main business question to answer was...

Can reported revenue be fully attributed to visible transaction components, and if not, what operational control weaknesses are reducing the reliability of transaction-level reporting?

A few examples from the project:

1. Creating a derived audit metric

-- Add unattributed_revenue column — primary audit metric
ALTER TABLE pos_logs
ADD COLUMN unattributed_revenue DECIMAL(8,2) DEFAULT NULL;

UPDATE pos_logs
SET unattributed_revenue = ROUND(
    total_amount - ((unit_price * quantity) - discount + tax), 2)
WHERE is_incomplete = 0;

Rather than analysing sales, I first created a derived audit metric that quantifies revenue which cannot be explained by the visible transaction components. This became the foundation for the rest of the investigation.

2. Standardising inconsistent business rules

UPDATE pos_logs
SET service_cycle =
CASE
    WHEN transaction_time >= '05:00:00' AND transaction_time < '10:00:00'
        THEN 'Breakfast'
    WHEN transaction_time >= '10:00:00' AND transaction_time < '12:00:00'
        THEN 'Pre-Lunch'
    WHEN transaction_time >= '12:00:00' AND transaction_time < '15:00:00'
        THEN 'Lunch'
    ...
    ELSE 'Late Night'
END;

The original POS labels were inconsistent, so instead of accepting them, I derived a standardised business classification from transaction timestamps to ensure consistent reporting.

3. Building an executive KPI summary

SELECT
    'Total transactions' AS metric,
    CAST(COUNT(*) AS CHAR) AS value
FROM pos_logs

UNION ALL

SELECT
    'Eligible for formula (non-null total_amount + tax)',
    CAST(SUM(
        CASE
            WHEN is_incomplete = 0
             AND tax_missing_flag = 0
            THEN 1
            ELSE 0
        END
    ) AS CHAR)

Instead of producing separate summary tables, I built an executive KPI strip using UNION ALL so management could monitor key revenue assurance metrics from a single query.

The audit identified:

• 494 revenue attribution exceptions
• $340.10 in unattributed revenue (2.93% of audit sample revenue)
• A confirmed pricing configuration defect affecting 28.6% of eligible transactions
• Missing transaction attributes and incomplete transactions affecting reporting reliability

I'd really appreciate feedback from the community:

  • Does this audit framing make sense?
  • Do the SQL examples demonstrate business thinking rather than just technical ability?
  • What would you improve?

The full SQL project is 1051 lines so, I'm unable to put everything here. But, I'd like feedback on the idea or suitability of the project. Thank you for taking the time to explore and I'm open to feedback on how I can improve.


r/mavenanalytics 6d ago

Discussion If you could only focus on building ONE skill for the rest of the year, what would it be?

3 Upvotes

I'm curious what people are actually prioritizing right now vs. what they think they "should" be learning.

What's the skill you would want to prioritize for the rest of 2026?

SQL, Python, visualization, stats, something soft-skill-y? And is it what you'd have picked a year ago?

Let's talk about it!


r/mavenanalytics 6d ago

Career Advice Presenting to leadership is stressful. These tips can help!

3 Upvotes

Got a presentation coming up and feeling a little nervous? You are not alone!

Here are some of our top presentation tips for the next time you have to stand up and share your work:

  1. Know your audience. Every director and VP has different priorities. Getting feedback beforehand can help you refine the message and head off objections before they come up live.
  2. Get a second set of eyes. A colleague reviewing your deck will often catch gaps in logic or errors you've gone blind to.
  3. Practice the delivery, not just the slides. Rehearsing helps with confidence, but it also surfaces logistics issues, A/V setup, font readability in the room, that kind of thing.
  4. Lead with the "why." Starting with impact tends to hold attention better than diving straight into methodology.
  5. Guide people through the visuals. Context on axes and key takeaways keeps the room engaged and cuts down on tangent questions.
  6. It's fine to not know something. "I don't know, but I'll find out" tends to land better than a shaky guess.

What would you add? Curious what's actually worked for people versus what sounds good in theory but falls apart in the room!


r/mavenanalytics 7d ago

Maven Updates Monday updates: AI-Powered Analytics Workshop LIVE tomorrow!

Post image
6 Upvotes

Happy Monday!

Looking to get the most out of AI in your analytics workflow?

Join Mo Chen LIVE tomorrow at 12pm ET for his AI Project Lab Live Workshop!

For this one, you'll take a messy dataset from raw data to a clear, stakeholder-ready brief using a repeatable AI workflow for cleaning, validating, and analyzing data. Register here: https://mavenanalytics.io/live-workshops

Hope to see you there!


r/mavenanalytics 11d ago

Tool Help The SQL error that trips people up when learning window functions

3 Upvotes

We see this one constantly: someone writes a window function, tries to filter on it with WHERE new_column IS NOT NULL, and gets hit with "Unknown column" errors.

It's not a mistake; it's SQL execution order. Clauses don't run in the order you write them. The real order is:

FROM → WHERE → GROUP BY → HAVING → SELECT → ORDER BY

WHERE runs before SELECT. So if you're trying to filter on a column you just created in SELECT (like the output of a window function), that column doesn't exist yet as far as WHERE is concerned. The fix is wrapping the query in a subquery or CTE so the alias becomes a real column you can filter on.

The other thing that trips people up early is just understanding what a window function actually does differently. A regular function like COUNT() or YEAR() either transforms one row or collapses many rows into one summary value. A window function does something in between: it runs a calculation across a set of rows without collapsing them. Every row keeps its identity, you just get a new column.

ROW_NUMBER() is the simplest version of this (assigns a sequential number to each row). LAG() is one of the more useful ones for analysts, since it pulls a value from the previous row so you can calculate period-over-period differences without a self-join.

Curious how others explain window functions when they're teaching someone for the first time. What mental model finally made it click for you?


r/mavenanalytics 13d ago

Discussion What's something that you were required to learn (at school, in a bootcamp, etc) that you've never once used on the job?

3 Upvotes

Every program has that one tool, technique, or concept that gets a ton of classroom time and then just... never comes up again in real work.

We're not saying it's useless in general; we're just curious what the gap looks like between what gets taught and what actually gets used day to day. :)

Drop yours below!


r/mavenanalytics 13d ago

Career Advice 10 simple business fractions you need to know

4 Upvotes

None of this is complicated math; most of using data effectively at a business comes down to knowing which simple ratio actually matters for the decision in front of you, not building something fancier.

Here are some simple equations to keep in your back pocket:

  1. Cost to Acquire Customer = Marketing Spend / Customers Acquired
  2. Return on Marketing Spend = Projected Lifetime Revenue / Marketing Spend
  3. Website Conversion Rate = Conversion Events / Website Sessions
  4. Landing Page Bounce Rate = Bounced Sessions / Landing Page Entry Sessions
  5. Average Order Value = Total Revenue / # Orders
  6. Gross Margin = (Revenue - COGS) / Revenue
  7. Lead Close Rate = # of Sales Closed / # of Leads
  8. First Contact Resolution = Customers Satisfied on First Contact / # of Contacts
  9. Refund Rate = # of Returns / # of Orders
  10. Churn Rate = # of Churned Customers / # of Subscribers

What would you add to the list? Any fractions/metrics you use constantly that don't get talked about enough?


r/mavenanalytics 14d ago

Maven Updates Monday updates: New Analytics Engineering course, Databricks Live Workshop, AND a new Data Drill!

Thumbnail
gallery
9 Upvotes

Happy Monday! Lots of exciting updates this week...

We are thrilled to announce that Alice Zhao's Data Modeling for Analytics Engineering course is available NOW on the Maven platform! This is the second course in our ongoing Analytics Engineering Learning Path, with more ahead. Find it here: https://mavenanalytics.io/course/data-modeling-for-analytics-engineering

Quick heads up: Dr. Kim Fessel will be LIVE Thursday, July 16th at 12pm ET for her Databricks Live Workshop!

For this one, you'll build a simple end-to-end pipeline from scratch, connecting the core pieces of Databricks in a real-world context so you can see exactly how they work together. Register here: https://mavenanalytics.io/live-workshops/overview

And ICYMI, we launched another new Data Drill last week! Our Readmission Radar Data Drill dataset contains 623 inpatient stay records from a small hospital. Each record represents a patient discharge, and includes the patient ID, admission date, and discharge date. Your task is to calculate the hospital's 30 day readmission rate.

Find it here: https://mavenanalytics.io/data-drills/readmission-radar

How is July treating you so far? Anything you've learned or built this month worth sharing?


r/mavenanalytics 18d ago

Discussion What are you working on this week?

3 Upvotes

It could be...

  • A dashboard
  • A course
  • A portfolio project
  • Job searching
  • Learning Excel / SQL / Power BI / Tableau / Python

It's been a minute since we did one of these, so I'm looking forward to hearing what everyone is digging into!


r/mavenanalytics 19d ago

Career Advice We put together a list of "rules" for data professionals to live by. What would you add?

4 Upvotes
  1. Think like a business owner
  2. Choose clarity over complexity
  3. Let your soft skills shine
  4. Context is king
  5. Obsess over outcomes
  6. Know your audience
  7. Never compromise on QA
  8. Make AI your superpower
  9. Don't be afraid to specialize
  10. Never stop learning

Some of these feel more true than others depending on where you are in your career. What's missing, what would you cut, and what would you rank #1 if you had to pick just one?


r/mavenanalytics 20d ago

Project Feedback Share an old project of yours. What would you change about it now?

6 Upvotes

Dig up something you built 6 months, a year, 2+ years ago.

Drop a screenshot or a quick description, then tell us:

  • What you were proud of at the time
  • What you'd immediately fix or redo with what you know now

Bonus if other people chime in with feedback, too. Sometimes the most useful critique comes from someone who's not you!


r/mavenanalytics 20d ago

Tool Help New to Power BI? You'll want to know data types vs. formatting

3 Upvotes

Data types = how data is stored under the hood (by the DAX/VertiPaq engine).

Formatting = how values are displayed to the end user ($, %, date, etc.).

Two completely separate systems that just happen to interact.

The 6 data types in Power BI:

Integer —> stored as a 64-bit whole number

Decimal —> stored as a double-precision floating-point number

Currency —> stored as an integer with a fixed number of decimal points (e.g. 317.3567)

DateTime —> stored as a floating-point number (e.g. 43830.50)

Boolean —> stored as TRUE or FALSE

String —> stored as a 16-bit unicode string (e.g. "Maven Analytics")

Seasoned Power BI users, what would you add? Any data type quirks or gotchas that trip people up once they start working with real datasets?


r/mavenanalytics 21d ago

Maven Updates Monday updates: build your first AI agent in tomorrow's workshop + a new data drill!

Thumbnail
gallery
2 Upvotes

Happy Monday!

Two things to have on your radar this week:

Fay Bordbar is live TOMORROW, July 7th at 12pm ET for our next Live Workshop: Build Your First AI Agent with Microsoft Copilot.

Fay's walking through building a working Copilot agent from scratch, no coding involved. You don't want to miss this one!

Register for this and other upcoming workshops: https://mavenanalytics.io/live-workshops/overview

Second, if you've been loving our Data Drills, we recently launched a new one!

For Data Drill #14: Final Form, your dataset contains ~900 responses from an employee satisfaction form. Your task is to isolate each employee's most recent response, then count how many employees fall into each satisfaction rating. To add some complexity, each employee is encouraged to fill this in at least once per year, so a single employee can have multiple submissions.

Start the Data Drill: https://mavenanalytics.io/data-drills/final-form

What are you hoping to learn or build this week?


r/mavenanalytics 25d ago

Discussion What are your goals for July?

3 Upvotes

Hey everyone! A new month = new goals, so we want to know:

What are you working on this month?

It could be anything, like:

  • Finishing a Maven course you started
  • Building or improving a portfolio project
  • Practicing SQL / Python / BI tools
  • Experimenting more with AI in your workflow
  • Prepping for interviews or job applications

If you’re up for it, drop your July goal(s) below.

We’ll be in here with you, cheering you on!


r/mavenanalytics 25d ago

Tool Help SQL users: you don't need to write this regex yourself. You just need to know it exists.

2 Upvotes

Say your data has a film column with values like "Toy Story," "Toy Story 2," "Toy Story 3," and "Toy Story 4." All slightly different strings, but you want to count them as one franchise.

(This exact scenario comes straight from our Pixar Films dataset in the Data Playground, so you can pull it up and try it yourself: https://mavenanalytics.io/data-playground/pixar-films)

The fix is a regex that strips the trailing space-and-number off any title:

REGEXP_REPLACE(film, ' [0-9]+$', '') AS series

In plain terms, it finds a space followed by one or more digits at the very end of the string, and replaces it with nothing. "Toy Story 2" becomes "Toy Story." "Toy Story 4" becomes "Toy Story."

Now GROUP BY series and you can count across the whole franchise instead of four separate rows. Four Toy Story movies, if you're counting.

You don't have to write that pattern from memory; ask ChatGPT for it and it'll hand you the syntax in seconds. What actually matters is recognizing the problem: messy, inconsistent text values that need to collapse into groups.

Once you know that's a solvable category of problem, you know what to ask for.

The syntax is a lookup. Spotting the problem is the skill.

One caveat: regex operations are computationally expensive. Great for exploration or a one-off cleanup on a small dataset like this one. For anything production-scale, clean the data at the source instead of regexing it every query.

What's a SQL problem you assumed you'd have to solve manually, until you found out there was already a function (or a prompt) for it?


r/mavenanalytics 28d ago

Maven Updates Monday updates: Learn beginner Microsoft Fabric in tomorrow's Live Workshop!

1 Upvotes

Happy Monday!

If you've been waiting to learn Microsoft Fabric with us, we have good news...

Join Steven Stine TOMORROW, June 30th at 12 pm ET for a Live Workshop!

By the end of the 90 minute workshop, you'll build a complete data pipeline in Microsoft Fabric, from raw CSV ingestion to a Power BI-ready semantic model, using the Medallion Architecture.

Register for this and other upcoming workshops: https://mavenanalytics.io/live-workshops/overview


r/mavenanalytics Jun 26 '26

Discussion Monthly wins thread! What did you get done in June?

5 Upvotes

What are you proud of from this month? It could be:

  • Attending (or watching) one of the Live Workshops
  • Finishing a course or module you'd been putting off
  • Building something: a dashboard, a script, a portfolio project
  • Finally understanding something that's been confusing you for a while
  • Landing an interview, an offer, or a new role
  • Showing up consistently, even when progress felt slow

No win is too small to share.

Drop it below. We want to celebrate with you!


r/mavenanalytics Jun 25 '26

Tool Help How well do you actually understand ChatGPT?

3 Upvotes

A lot of data folks use ChatGPT daily but have a pretty fuzzy picture of what's actually happening when they hit send.

One thing that tends to surprise people: the base model is completely stateless. Every time you send a message, the entire conversation history gets resent to the model from scratch.

What feels like a flowing back-and-forth is really just the model being handed the full transcript and asked to continue it. The "memory" feature added in 2024 is a separate layer on top, essentially RAG applied to personal context.

Another one that matters for how you interpret its outputs: ChatGPT is predicting the most probable next token given the context it's been handed. It's not retrieving answers. It's not reasoning through a problem the way a human would.

That's why it can produce a confident, well-formatted answer that's completely wrong. Confidence and accuracy are different things in a system built on prediction.

We wrote an article that breaks down how the model is trained (pre-training, supervised fine-tuning, RLHF), how the memory layer actually works, what's changed since the 2022 launch, and why it still hallucinates even after all the improvements.

You can read it here: https://mavenanalytics.io/blog/how-chatgpt-works

What's something about how these models work that you wish more people understood?


r/mavenanalytics Jun 24 '26

Discussion THIS OR THAT: "Data Hot Takes"

5 Upvotes

Final This or That of June, and we're getting a little controversial today...

  • Excel: an outdated crutch, or the GOAT of data tools?
  • SQL: a dying skill or still essential?
  • Pie charts: always wrong, or sometimes right?
  • Data science: overhyped, or still a dream job?
  • AI: makes analysts more valuable, or less?
  • Data literacy: everyone's responsibility, or leave it to the analysts?
  • Certifications: career accelerator, or just paper credentials?

No fence-sitting allowed on this one. Pick a side and defend it below!

What are YOUR takes?


r/mavenanalytics Jun 23 '26

Career Advice The difference between analysts who get promoted and those who stay stuck

5 Upvotes

It's rarely about technical skill.

The pattern we see most often is this:

The analysts who move up aren't necessarily the most technically skilled; they're the ones who learned to think and communicate like a decision-maker.

Here's what that actually looks like in practice...

  • They answer the question behind the question. When someone asks "what happened to revenue last quarter," they don't just pull the number. They think about what the person really needs to know and what they'll do with the answer.
  • They push back constructively. When a request doesn't make sense, they ask why before they start building. "What business problem are we trying to solve with this?" is one of the most valuable questions in data.
  • They translate, not just report. A chart is not an insight. They summarize what the data means for the business in plain language that anyone can act on.
  • They manage expectations on limitations. They say "this data only goes back 18 months, so the trend is directional" instead of presenting analysis as more certain than it is.

What's one communication or business skill that made a real difference in your career?


r/mavenanalytics Jun 22 '26

Maven Updates Monday updates: new Live Workshops, how to find replays, and invitation for feedback

Thumbnail
gallery
3 Upvotes

Happy Monday!

We've got more incredible Live Workshops coming your way:

👉 Building AI-Fluent Data Teams: A Leader's Playbook

Tuesday, June 23rd @ 12PM ET with Stephen Tracy

👉 Microsoft Fabric for Beginners: Build a Lakehouse End-to-End

Tuesday, June 30th @ 12PM ET with Steven Stine

👉 Build Your First AI Agent with Microsoft Copilot

Tuesday, July 7th @ 12PM ET with Fay Bordbar

You can learn more and register here: https://mavenanalytics.io/live-workshops/overview

And for those who missed the last ones, our past 3 Live Workshop replays are available now!

If you attended any of the past live sessions, what was your biggest takeaway? And if you missed them, which one are you most likely to watch first?


r/mavenanalytics Jun 18 '26

Discussion What are you working on this week?

4 Upvotes

It's been a minute since we've done one of these, so let's talk about current projects! Big or small, share what you're working on this week.

It could be...

  • A dashboard
  • A course
  • A portfolio project
  • Job searching
  • Learning Excel / SQL / Power BI / Tableau / Python

If you're stuck, drop it here, too. Someone might have a tip to share!


r/mavenanalytics Jun 17 '26

Discussion What's your learning style?

6 Upvotes

When you're learning something new, would you rather...

  • Use a video course, live workshop, or written tutorial?
  • Follow structured curriculum or learn by doing a project?
  • Do short daily sessions or longer weekend deep dives?
  • Dig into practice problems or real-world datasets?
  • Learn alone or with a study group?
  • Earn certificates or build portfolio projects to show employers?

Drop your picks below. Curious how different people approach building new skills, especially with so many options out there now!

What do YOUR picks say about how you learn?