Power BI Decision-Making Dashboard | Aurora Bank Analysis - Part One

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ธ.ค. 2024

ความคิดเห็น • 11

  • @SandyCoco1
    @SandyCoco1 วันที่ผ่านมา +1

    Getting my learning materials ready. Thanks for sharing your knowledge with us ❤

  • @ZefasBi-Analytics
    @ZefasBi-Analytics  19 ชั่วโมงที่ผ่านมา

    Will add that to the file on one drive now

  • @isBessem
    @isBessem วันที่ผ่านมา

    Great work! The only observation I have is about the Canva settings that must be set to 16:9 in case people would like to participate in challenges like in your example 🤗

  • @BcConnect
    @BcConnect 19 ชั่วโมงที่ผ่านมา

    great but no code for the calender dax

  • @BcConnect
    @BcConnect 19 ชั่วโมงที่ผ่านมา

    great video
    i got stuck at 21:39 because the code aint bright enough and you did include the code in the Aurora Dax docx file

    • @ZefasBi-Analytics
      @ZefasBi-Analytics  19 ชั่วโมงที่ผ่านมา

      done check please

    • @BcConnect
      @BcConnect 18 ชั่วโมงที่ผ่านมา

      @@ZefasBi-Analytics i used gpt to extract the text from the video

    • @BcConnect
      @BcConnect 18 ชั่วโมงที่ผ่านมา

      thats fine thanks

  • @BcConnect
    @BcConnect 7 ชั่วโมงที่ผ่านมา

    what about the continuation ?

  • @BcConnect
    @BcConnect 18 ชั่วโมงที่ผ่านมา

    calendar =
    VAR BaseCalendar =
    CALENDAR(DATE(2012, 1, 1), DATE(2014, 12, 31))
    RETURN
    ADDCOLUMNS(
    BaseCalendar,
    "Year", YEAR([Date]),
    "Quarter", QUARTER([Date]),
    "Month", MONTH([Date]),
    "Week Number", WEEKNUM([Date]),
    "Week Day", WEEKDAY([Date]),
    "Day", DAY([Date]),
    "Month Name", FORMAT([Date], "MMMM"),
    "Month Sort", FORMAT([Date], "YYYY MM"),
    "Quarter Number", "Q" & QUARTER([Date]),
    "Year Month", FORMAT([Date], "YYYY MMMM"),
    "Year Month Sort", YEAR([Date]) * 100 + MONTH([Date]), -- Sortable Year-Month column
    "Weekend?", [Date] = 0 + WEEKDAY([Date])
    )