Master the Art of Creating DYNAMIC Calendar Tables in Power BI | Power Query

Поділитися
Вставка
  • Опубліковано 11 вер 2024
  • Master the Art of Creating DYNAMIC Calendar Tables in Power BI | Power Query//
    Learn how to create a dynamic calendar table using Power Query in Power BI! In this tutorial, we'll walk you through the step-by-step process of building a customizable calendar table that can be a game-changer for your data analysis projects. Discover powerful techniques and tips to enhance your Power BI skills. Whether you're a beginner or an experienced user, this tutorial has something for everyone interested in optimizing their data visualization. Watch now and supercharge your Power BI reports with a dynamic calendar table built with Power Query!
    Found the content helpful, feel free to buy me a cup of coffee ☕👇
    ✅www.paypal.me/...
    🥇 JOIN THE POWER BI DISCUSSIONS
    ✅Join the Business Intelligence Teammates Group on LinkedIn: / 12848133
    ✅Join the Business Intelligence Teammates Group on Facebook: / biteammates
    📩NEWSLETTER
    ✅ Be one of the first to receive my high-quality tutorials in your inbox each week: www.vizxlizati...
    ⏳ RESOURCES
    ☑️Content File: drive.google.c...
    📚HIGHLY RECOMMENDED BOOKS (Affiliate links)
    ***The Definitive Guide to DAX: Business Intelligence for Microsoft Power BI, SQL Server Analysis Services, and Excel Second Edition: 🔗amzn.to/3ldPLpk
    ***DAX Patterns (Second Edition): 🔗amzn.to/3fBKdnD
    ***Analyzing Data with Power BI and Power Pivot for Excel: 🔗amzn.to/3fDPLOd
    ***Beginning DAX with Power BI: 🔗amzn.to/3fDEe1k
    ***Storytelling with Data: A Data Visualization Guide for Business Professionals: 🔗amzn.to/3mfPcwE
    ***Storytelling with Data: Let's Practice! 🔗amzn.to/36c6Cot
    ***Information Dashboard Design:🔗 amzn.to/2V61o7h
    📺RELATED VIDEO TUTORIALS
    ***Playlist with all my Power BI tutorials: • Master Power BI [English]
    *** Playlist with all my Interviews: • Power BI Interviews wi...
    [DISCLAIMER]: Some links included in this description might be affiliate links. I might receive a small commission if you purchase a product with those links. However, there is no additional charge to you! I appreciate your support and this will help me provide you with free content every week.
    👋CONNECT WITH ME
    LinkedIn 🔗 / nestoradrianzen
    LinkedIn 🔗 / quipuanalytics
    Twitter 🔗 / quipuanalytics
    Facebook 🔗 / quipuanalytics
    Instagram 🔗 / nestoradrianzen
    Web 🔗www.vizxlizati...
    👊SUPPORT MY WORK
    ***Hit the thanks icon in any video and subscribe to the channel ▶ / nestoradrianzen
    👨‍💻COURSES
    *** Dismantling the Secrets of Power BI Desktop: vizxlization.t...
    🎧Song: Axol - Mars [NCS Release]
    Music provided by NoCopyrightSounds
    Free Download/Stream: ncs.io/Mars
    Watch: • Axol - Mars | House | ...
    #PowerBI #PowerQuery #calendartable #vizxlization #nestoradrianzen

КОМЕНТАРІ • 5

  • @NestorAdrianzen
    @NestorAdrianzen  Рік тому

    Direct Source, Power Query, or DAX? Which option do you use to create your calendar tables? 😀 Curious about that. Let me know by leaving a comment below 👇

  • @juskonig
    @juskonig 8 місяців тому

    Super easy! Are there any drawbacks to creating a date table in this way?

    • @NestorAdrianzen
      @NestorAdrianzen  8 місяців тому +1

      @juskonig, Thanks for your feedback. I don't see any. As a matter of fact, I'd use Power Query over DAX to create a calendar table.

  • @kebincui
    @kebincui Рік тому

    Excellent Tutorial, thanks for sharing. Curious to find that for you wrote the fucntion as #"Date.StartOfYear"() .Very interesting it works. In ducmentaiton the syntaxt is Date.StartOfYear(). Is this another format for this function and simialr function? Thanks in advance.

    • @NestorAdrianzen
      @NestorAdrianzen  Рік тому

      Kebincui, That's a really good observation. I was playing with the code, and, yes, you can also get the same results with an M variable format around a function (#"Step Name").
      If we don't want to use that syntax, we can use the standard syntax and get the same results as well. See below:
      StartDate= Date.StartOfYear(List.Min(financials[Date]))
      EndDate = Date.EndOfYear(List.Max(financials[Date]))
      Dates = {Number.From(#"StartDates")..Number.From(#"EndDates")}