EY- DAX problem asked in Power BI Interview😲 | Must Watch

Поделиться
HTML-код
  • Опубликовано: 14 окт 2024

Комментарии • 72

  • @subhashinithummala-kf9jk
    @subhashinithummala-kf9jk 6 месяцев назад +15

    I used this way to achieve the result.
    Category = IF(CONTAINSSTRING('EY'[Product],"bike"),"bike","Acc")

  • @shivshankarkumar7446
    @shivshankarkumar7446 6 месяцев назад +3

    You are truly a gem, shining brightly with your kindness, wisdom, and warmth. Your presence brightens the lives of those around you, and your actions inspire others to be their best selves.❤

  • @swapnilpatil4238
    @swapnilpatil4238 2 месяца назад +1

    We can also used IF() Function, here.!
    Switch function takes more condition than IF().

  • @SunilKumar-bc5uf
    @SunilKumar-bc5uf 6 месяцев назад +4

    We can use “IF” Condition also for this .
    If(EY[Product] = “DEF” ,”Accessories”,
    If(EY[Product] = “LFG” ,”Accessories”,”Bike”))

    • @vijaygupta7059
      @vijaygupta7059 6 месяцев назад

      seems this is only a manual solution, for e.g XYZ data is present in the product name column that time we need to use the same dax used in the video

    • @sarihaddu
      @sarihaddu 6 месяцев назад +3

      You formula is hard-coded. It will not work if there are a few more rows like LMN, OPQ, RST. Imagine there are 100 rows, then you need to write 101 nested IF dax functions.

    • @KavishSrivastava
      @KavishSrivastava 6 месяцев назад

      We can use IF - similarly as Switch with Containsstring.
      IF(CONTAINSSTRING(EY[Product Name]) = "Bike", "Bike", "Accessories")

  • @KartikKumar-h5r9w
    @KartikKumar-h5r9w 6 месяцев назад +2

    Solution -
    Col2 =
    IF((SEARCH("Car",'Sample'[Col1],,0)),"Bike","Category")

  • @letsexplore0075
    @letsexplore0075 6 месяцев назад +3

    As amazing content as you are 🌹
    Request you to Create a Video on Publishing the Reports to Dev 2 Testing and then to Production as it's being asked in many interviews!! Thank you once again for a wonderful support ☺️

  • @shubhamsingh9522
    @shubhamsingh9522 6 месяцев назад +4

    Same type of question was asked in citiustech

  • @biswadeepsahoo
    @biswadeepsahoo 6 месяцев назад +2

    instead of Switch I just put the function "Category = IF(CONTAINSSTRING(Bike[Product],"Bike"),"Bike","Accessories")" & got the result.
    Hope this is also true

  • @sonalijain9024
    @sonalijain9024 4 месяца назад

    We can also make use of if function I did in this way.
    Ctaegory = IF(CONTAINSSTRING(EY[Product name],"bike"),"Bike","Accessories")

  • @harshit_dataanalyst
    @harshit_dataanalyst 6 месяцев назад +1

    Bahut badhiya video @shashank bhai

  • @Travelwithus304
    @Travelwithus304 6 месяцев назад

    Thank you Shasank for posting this in your channel. I will share more questions which I faced in EY.

  • @aditjain6580
    @aditjain6580 6 месяцев назад

    Thank you for sharing this valuable information with us

  • @sumibharali4061
    @sumibharali4061 6 месяцев назад +2

    Var t= search(" book", column name,1,0) var t1 = if (t>0,"book","accessories") return t1

  • @pradeeprviji
    @pradeeprviji 6 месяцев назад +1

    Hi Shashank ,Thanks for all of your videos and efforts ,Much appreciated its helped me a lot in interview preparations.
    Below are 2 DAX scenario which is asked in Birla Soft Interview.
    Please make videos on that .
    Que 1 :
    Column A Category
    ABCBike Bike
    EFGHJ Accessories
    DEFBike
    Where ever Bike is there it should return value as "Bike" else "Accessories".
    Que 2:
    Column A Column B
    A 80
    B 60
    C 30
    D 50
    How to find out how much percentage each column is contributing using DAX?
    Que 3: Write a DAX query to see 7 days ago sales.
    Your replay will be much appreciated.

    • @learnwidgiggs
      @learnwidgiggs  6 месяцев назад

      Can you give some clarity for the 2nd question?
      And for 3rd question is it last 7 days sales or Last 7th day sale he wants?

  • @nagarajupullur6489
    @nagarajupullur6489 5 месяцев назад +1

    do more content in DAX same like this

  • @pawankalyan5839
    @pawankalyan5839 6 месяцев назад

    Could you please create a video on how to create a multi lingual report in power bi? If any one knows please give your inputs.
    Thanks

  • @Sirigineedi_Navann
    @Sirigineedi_Navann 6 месяцев назад

    Fantastic one Bhai Kudos 😊🎉

  • @rootex8013
    @rootex8013 6 месяцев назад +2

    Hi sir, which one is best clurse for data analyst , Is it the course provided by code basics or growdata skills. Please suggest

    • @learnwidgiggs
      @learnwidgiggs  6 месяцев назад +1

      I believe Codebasics will be a good choice.

    • @rootex8013
      @rootex8013 6 месяцев назад

      @@learnwidgiggs thanks will purchase that course

  • @Praveenmanikanta32
    @Praveenmanikanta32 13 дней назад

    If function can be used too

  • @aryanpokhriyal_DA
    @aryanpokhriyal_DA 6 месяцев назад

    You are very helpful person!🙏

  • @bandarupradeep5287
    @bandarupradeep5287 6 месяцев назад

    Is there any way to get current page name as measure? My intention for this is I need to pass dynamic parameter to calendar function as start date

  • @gagansingh3481
    @gagansingh3481 6 месяцев назад

    Itna easy question if and search function se hi ho jaayega ..

  • @hemaprajapati8866
    @hemaprajapati8866 6 месяцев назад

    Thank you sir for this informative video

  • @pratikjugantmohapatra18
    @pratikjugantmohapatra18 6 месяцев назад +1

    Bhaiya ....there are n number of DAX codes are there .How to know which dax fucntion to use and when to use ? Is there any tricks to know ?

    • @sarihaddu
      @sarihaddu 6 месяцев назад +2

      Learn all basic functions text, logical, date and time, filter, maths and statistics and time intelligence. They will get you through most of the challenges. Remaining functions are on case to case basis, it's impossible to know all Dax functions.

    • @learnwidgiggs
      @learnwidgiggs  6 месяцев назад +1

      Yes learn all basic text, logical, date and time, filter, mathematical & statistics and time intelligence functions.

  • @Pooja_Bhanu
    @Pooja_Bhanu 6 месяцев назад

    thank you so much for sharing the relatd content

  • @sonalisinghal988
    @sonalisinghal988 6 месяцев назад

    Really informative video sir🙏

  • @bloggingbyasifali4984
    @bloggingbyasifali4984 5 месяцев назад

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

  • @shantiswarupnayak6641
    @shantiswarupnayak6641 6 месяцев назад

    informative

  • @asmajabeen2736
    @asmajabeen2736 4 месяца назад

    Sir true function nhi smjha q liye switch me

  • @passionpreneur9740
    @passionpreneur9740 6 месяцев назад

    Thought of using switch and containstring
    But could not figure out how to use the containstring and switch function :(
    So did the below:-
    var a = SEARCH("bike",'Product'[Product Name],1,BLANK())
    RETURN
    IF(a=BLANK(),"Accessories","Bike")
    Bdw, just completed the powerbi from codebasics 2 days back.
    But still need to practice a lot to write DAX formulas and figure out how to work on project.

  • @pritinair-eu9pf
    @pritinair-eu9pf 6 месяцев назад

    Hello shashank sir, i got 2 job offer as fresher, 1st in US IT staffing firm as web analyst in digital marketing dep. i think and 2nd in Service providing startup as Python developer with django. so i want to move in data engineering or data analyst career path in future. which profile should be best. web analyst same as data analyst or different, thank you

    • @learnwidgiggs
      @learnwidgiggs  6 месяцев назад

      You will have to check the job description and then only decide.
      Python developer with django is not a Data Analyst position

  • @shubhamsingh9522
    @shubhamsingh9522 6 месяцев назад +1

    In techm , in managerial round, interviewer asked to me that how to refresh a dashboard /report( exactly not remember) in every 5 min ? Can someone tell me the ans

    • @sarihaddu
      @sarihaddu 6 месяцев назад +2

      It can only be done when we connect to data via direct query mode. Import mode has a restriction of 30 minutes between each refresh. Direct query mode removes all restrictions and can load live up-to-date data.

    • @akashhanchatet-2842
      @akashhanchatet-2842 6 месяцев назад +1

      Yes, when you publish your report, i.e on web which means Power BI service, you get options on the left panel. In which, you'll have an option of Schedule Refresh. You can refresh the data either Daily/Weekly. And additionally there are options beneath like you can set time for refresh, but you can do this only 8 times a day. I'm not sure if it's free, I guess it's achievable in Power BI Pro Licence. Correct me if I am not wrong, @LearnWidGiggs bhaiya ✨

    • @oKUNDURUVYSHNAVI
      @oKUNDURUVYSHNAVI 6 месяцев назад

      @@akashhanchatet-2842 yes we can refresh 8 times for powerbi pro license and we can refresh 48 times for premium license its based on license

  • @MeghaVermaVlogs
    @MeghaVermaVlogs 2 месяца назад

    8200 ka. Ho gyw h wha ab price

  • @_bhavyasinghal_
    @_bhavyasinghal_ 6 месяцев назад

    can i use if statement in this ??

  • @mahendra951
    @mahendra951 6 месяцев назад +1

    Any immediate joiners for power bi role, ping me I will provide referral.