4 Ways to Create Date Column for a Calendar in Power Query

Поділитися
Вставка
  • Опубліковано 2 жов 2024

КОМЕНТАРІ • 27

  • @eriks.9239
    @eriks.9239 Рік тому

    This is great context, with simple explanations.
    Is it possible to link the value of the variables to a lower and upper value of another table containing transactional data?

  • @CAKimberlyLewis
    @CAKimberlyLewis 2 роки тому

    Good stuff! Thank you!!!

  • @abimaelesauaguilarvalerian4177
    @abimaelesauaguilarvalerian4177 21 день тому

    Thank you so much. A lot of value in this video!!!

  • @IIIUMINAT1I
    @IIIUMINAT1I 2 роки тому +2

    This guy. What a hero

    • @BIGorilla
      @BIGorilla  2 роки тому

      And what would I be without supporters. You are the real hero Max. Amen 🙏

  • @aytunch
    @aytunch 2 роки тому +2

    Great tutorials, keep more coming Rick

    • @BIGorilla
      @BIGorilla  2 роки тому

      Thanks aytunch. 🙏 keep monitoring, more coming next week!

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

    That's awesome. But how to generate dates between 2 date intervals of same date column? i have a date column 11/11/2021 and in second row its 1/3/2022 how to fill the dates between these 2 dates?

  • @RafaelRomero-o7r
    @RafaelRomero-o7r 10 місяців тому

    Awesome, I'm getting pro each day in Power Query by watching your videos and of course because of you!, thank you so much, greetings from dominican Republic.🎉

  • @naylord5
    @naylord5 2 роки тому +1

    Your content is amazing! Thank you so much for sharing! New subscriber.

    • @BIGorilla
      @BIGorilla  2 роки тому +1

      🙏 Thanks Luis, it's so nice to hear you like the content. Thanks for leaving a comment. There's more coming soon!!

  • @darwinposo
    @darwinposo 2 роки тому

    Quality Content. Clear , Concise and Comprehensive.
    Keep it coming....

  • @SndfOmar
    @SndfOmar 5 місяців тому

    Awesome Date info. Thanks a lot for sharing. 5 Stars!

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

    Thank you so much for this video! You're the best!

  • @augustocesardasilvacrisost4331
    @augustocesardasilvacrisost4331 2 роки тому

    Hi!
    I have a doubt.
    Instead of using a parameter, how do I reference the StartDate and the EndDate that is already in a columm inside a table?

    • @BIGorilla
      @BIGorilla  2 роки тому

      Would there be multiple dates? And do you want multiple calendars?

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

    Hi! Very good video!
    What if I want to create a column in an excising table? referencing the column "source" so it will take the date from de SP

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

    This was helpful. Thank you

  • @mnowako
    @mnowako 2 роки тому

    Awesome!
    The content and quality of all your videos is second to none!
    I look forward to more of your videos. Great lessons. Thank you! 👏

    • @BIGorilla
      @BIGorilla  2 роки тому

      Thanks Mariusz, happy to help! I find the more we share, the more we all learn. And there’s a lot of areas that can use more content. Have you ever considered making content?

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

    This is my favorite Power Query content channel. Please keep sharing these awesome contents

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

      That’s very kind, thank you🙌

  • @ritsasemprou3888
    @ritsasemprou3888 2 роки тому

    thank you for sharing!!!!!!!!!!!!!!!!!!! waiting for part 2 :)

    • @BIGorilla
      @BIGorilla  2 роки тому +1

      Coming next week Dec 22nd!

  • @williamarthur4801
    @williamarthur4801 2 роки тому

    Really good, it must be it's my third time of watching, mainly for the list.generate. If I had a question, it would be regarding the use of the underscore , and when and why it is needed after 'each' but not always.
    Perhaps a future video, I don't think it's been done.

    • @BIGorilla
      @BIGorilla  2 роки тому

      The underscore is short for a function:
      The m language has some short syntaxes that do the same. They allow you to perform an operation on each underlying value. Equivalent are :
      Each _
      Each () => _
      Each (x)=> x
      The version in the video is a short way to write it. To make life easier :)

    • @williamarthur4801
      @williamarthur4801 2 роки тому

      @@BIGorilla Thanks, I did quite bit of experimentation after watching your 'generate' video, using each _ ,
      List.Generate( () => 1,
      (_)=> _ < 7,
      (_)=> _ + 1 )
      List.Generate( () => 1,
      (A)=> A < 7 ,
      (A)=> A + 1 )
      What I found interesting was that the 'initial function could not be named,
      I first tried to use the _ or 'A' within that as well.
      Richard.