КОМЕНТАРІ •

  • @harishkumar-v2i
    @harishkumar-v2i День тому

    The question was to find female contribution in the total sales.
    [Sales by Female in 3 locations] / [Total sales]

  • @karthikrajag6796
    @karthikrajag6796 5 місяців тому +2

    recent interview questions in capgimini
    1) I have 4 visual and 2 slicers . How many queries will run if I refresh this
    2 ) can we switch to import to DQ or DQ to import mode in middle of the developement in PBI.
    3) Difference between Slicer and filter
    4) I filter a value from filter pane , will it reduce the performance.
    5) I have huge data like 5 gp of data, how will you handle
    can you answer for these also . Interview happened on 18th April 2024

  • @sanjeevchaurasia1261
    @sanjeevchaurasia1261 6 місяців тому +5

    Thankyou sir for sharing this valuable video.
    if i had to write this DAX, my approach would be this
    Total_Sales =

    VAR filter1 = FILTER( Sales , Sales[Gender] = " F " )
    VAR filter2 = FILTER( Sales , Sales[State] IN { "Karnataka", "Maharastra", "Gujarat"})
    RETURN
    CALCULATE( SUM(Sales[Amount]),filter1,filter2)

  • @amitkumarsingh8936
    @amitkumarsingh8936 6 місяців тому

    The comment section is also very informative guys

  • @digvijaygore7203
    @digvijaygore7203 4 місяці тому

    Great work man ❤

  • @ghoshsubhosmita
    @ghoshsubhosmita 6 місяців тому

    thank you shashank for sharing this

  • @vishalshelar4886
    @vishalshelar4886 6 місяців тому +1

    Sir what mean by Freelansing work please make a video of freelancing data analytics job

  • @beneficial4u572
    @beneficial4u572 6 місяців тому

    Very Useful, thanks for sharing.

    • @learnwidgiggs
      @learnwidgiggs 6 місяців тому

      Glad you found it useful 🙂

  • @rakeshricky7015
    @rakeshricky7015 6 місяців тому

    Perfect Explanation 👏

  • @Naveen_9959_kumar
    @Naveen_9959_kumar 6 місяців тому +1

    Hello sir , can you share about resume for freshers

  • @Zigzag12370
    @Zigzag12370 6 місяців тому +2

    Hi bro I am worked in other domain now I am training on power bi developer how can I get job as fresher can u suggest roadmap.

  • @datayogi_
    @datayogi_ 5 місяців тому +1

    Query - I think as we are using calculate, we dont need to add filter function, we state the conditions directly, pls correct me if I am wrong

    • @learnwidgiggs
      @learnwidgiggs 5 місяців тому +1

      But that will not be an optimized solution

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

      @@learnwidgiggs Okay

  • @shalinisrivastava7250
    @shalinisrivastava7250 6 місяців тому

    Thank you so much sir,

  • @AakashYadav-kb2qn
    @AakashYadav-kb2qn 5 місяців тому

    Thankyou giggs bhai

  • @LaxmiChinta-q1z
    @LaxmiChinta-q1z 6 місяців тому

    Great explanation sir

  • @anunaydubey7174
    @anunaydubey7174 6 місяців тому

    Thanks for sharing this Sir❤

  • @kamalgopalsingh244
    @kamalgopalsingh244 6 місяців тому

    We could have used visual level filter to filter condition??is it not professional way ????

  • @ArpitPawar-kk1wr
    @ArpitPawar-kk1wr 5 місяців тому

    This formula is showing error that sum cannot work with value of type string.

  • @SandipanSarkar-c8v
    @SandipanSarkar-c8v 6 місяців тому

    Finished watching

  • @moodituupoo1727
    @moodituupoo1727 6 місяців тому

    Do they keep aptitude test before technical test in MNC's?

  • @joydeepsen594
    @joydeepsen594 6 місяців тому

    Total Sales =
    var a = CALCULATE(SUM(Sales[Amount]),Sales[State]="Gujarat" && Sales[Gender]="F")
    var b = CALCULATE(SUM(Sales[Amount]),Sales[State]="Karnataka" && Sales[Gender]="F")
    var c= CALCULATE(SUM(Sales[Amount]),Sales[State]="Maharastra" && Sales[Gender]="F")
    var d=a+b+c
    return d

  • @nitinsharma2019
    @nitinsharma2019 6 місяців тому

    Also upload the dataset for practice

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

    Hi sir can u plz make video for 3+ powerbi developer resume.

  • @shalakamohite1076
    @shalakamohite1076 6 місяців тому

    Thank you sir

  • @sonalisinghal988
    @sonalisinghal988 6 місяців тому

    Amazing video sir🙏

  • @TeluguTonicGlobal
    @TeluguTonicGlobal 6 місяців тому

    Greate Explanation sir

    • @learnwidgiggs
      @learnwidgiggs 6 місяців тому

      Glad you found it helpful 🙂

  • @keerthiraj3498
    @keerthiraj3498 6 місяців тому

    Tqsm bro ❤

  • @vikas261196
    @vikas261196 6 місяців тому

    isn't it too easy from the interview point of view ?

  • @shivshankarkumar7446
    @shivshankarkumar7446 6 місяців тому +4

    Another approach:
    Total sales =
    SUMX(
    FILTER(
    Sales,
    Sales[Gender] = "F" &&
    Sales[State] IN {"Karnataka", "Maharashtra", "Gujarat"}
    ),
    Sales[Amount]
    )

    • @Aaradhya_Jauhari
      @Aaradhya_Jauhari 6 місяців тому +1

      Compute intensive

    • @mohammedowais4908
      @mohammedowais4908 6 місяців тому +2

      SUMX is an iterator function and the DAX will be slow in this case hence not recommended

  • @SUEZ_DATA
    @SUEZ_DATA 6 місяців тому

    Very nice

  • @carcrazynishant
    @carcrazynishant 6 місяців тому

    🫡🙏 thank you

  • @Zigzag12370
    @Zigzag12370 6 місяців тому

    Hi