Get Hired at Accenture with These Power BI Interview Questions | Power Bi Round 2 Interview Question

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ม.ค. 2025

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

  • @lakkudawargave
    @lakkudawargave หลายเดือนก่อน

    O my god , this lady has so much knowledge ❤

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

      Absolutely! She's truly incredible, and we’re so glad you noticed. ❤ If you enjoy this kind of content, don’t forget to subscribe and stay tuned for more amazing insights!

  • @sareenmodem5224
    @sareenmodem5224 หลายเดือนก่อน

    converting to date column using dax : Dax date =
    DATE(
    LEFT('Whone to Date'[date column],4),
    MID('Whone to Date'[date column],5,2),
    RIGHT('Whone to Date'[date column],2)
    )

    • @KSRDatavizon
      @KSRDatavizon  24 วันที่ผ่านมา

      LEFT: Extracts the first 4 characters, which represent the Year.
      MID: Extracts 2 characters starting at position 5, representing the Month.
      RIGHT: Extracts the last 2 characters, which represent the Day.
      DATE: Combines these extracted values into a proper Date format in Power BI.
      Ensure 'Whone to Date'[date column] is a text column, as this formula assumes text input. If it’s already numeric, you might need to convert it to text first using FORMAT or ensure the numeric operations align.
      The output of this formula will be in Power BI's Date data type.

  • @praveenbhojan5022
    @praveenbhojan5022 4 หลายเดือนก่อน +1

    1st question - simple step change the number data type to text and then change the data type into date

    • @madhusudhanreddyt2838
      @madhusudhanreddyt2838 4 หลายเดือนก่อน

      we can do it in DAX also using the combination of Date, LEFT, RIGHT and MID Functions..or we can use the Date.From function in the custom column

    • @KSRDatavizon
      @KSRDatavizon  4 หลายเดือนก่อน

      Thank You for Your comment, Please subscribe our channel for regular updates and it Motivates us a lot 🙏🏼

  • @SandipanSarkar-c8v
    @SandipanSarkar-c8v 3 หลายเดือนก่อน

    Finished watching

  • @Nishikant_N
    @Nishikant_N 4 หลายเดือนก่อน

    Question 5, i had tried but could not have done. How you can help me?

    • @KSRDatavizon
      @KSRDatavizon  3 หลายเดือนก่อน

      could you please share us the errro pic and your querrey in Detailed

  • @Sureshsahu-o9l
    @Sureshsahu-o9l 3 หลายเดือนก่อน +1

    These questions are typically asked for candidates with how many years of experience

    • @KSRDatavizon
      @KSRDatavizon  3 หลายเดือนก่อน

      3-5 years experienced people

  • @kancharanarajendra6185
    @kancharanarajendra6185 4 หลายเดือนก่อน

    How how many years experience these questions are for..

    • @KSRDatavizon
      @KSRDatavizon  4 หลายเดือนก่อน

      it helps for 3-5 years experiance people.

  • @vishalgatla-i8t
    @vishalgatla-i8t 4 หลายเดือนก่อน +1

    For Que-2

    • @KSRDatavizon
      @KSRDatavizon  3 หลายเดือนก่อน

      Need any more information ?

  • @harikk-en1cd
    @harikk-en1cd 4 หลายเดือนก่อน

    Where is round 1?

    • @KSRDatavizon
      @KSRDatavizon  4 หลายเดือนก่อน

      th-cam.com/video/_DPYCkUivvM/w-d-xo.html

  • @kiran8145
    @kiran8145 4 หลายเดือนก่อน

    Please create a video on how to write a Power BI resume for someone with 1-2 years of experience.

    • @KSRDatavizon
      @KSRDatavizon  4 หลายเดือนก่อน +1

      sure kiran, we will make a video on the same,

  • @OneNI83
    @OneNI83 4 หลายเดือนก่อน +1

    Question No 5 ,it should be ALLSELECTED not ALL

    • @KSRDatavizon
      @KSRDatavizon  4 หลายเดือนก่อน

      Thank You, Please subscribe our channel for regular updates. this video was made by one of our student who cracked the interview, sorry if any mistakes as she was new for making sessions.
      our intension just to share her experiance with us. hope you cna understand

    • @madhusudhanreddyt2838
      @madhusudhanreddyt2838 4 หลายเดือนก่อน +1

      yes it should be ALLSELECTED to work perfectly..

  • @namangarg7023
    @namangarg7023 3 หลายเดือนก่อน

    This is for freshers only..also most of the optimisation of queries can be done in SQL only...
    For two fact tables u can select required columns from two different tables and then union all.
    Select distinct customerid from table1
    Union all
    Select distinct customerid from table2

    • @KSRDatavizon
      @KSRDatavizon  3 หลายเดือนก่อน

      Optimizing SQL Queries for Freshers: A Quick Tip!
      When working with two fact tables, remember that most of your query optimization can be done directly within SQL.
      💡 Here’s a simple tip: If you need to retrieve distinct customer IDs from two different tables, you can select the required columns from both tables and use the UNION ALL operation to combine the results.