Scenario: Highlight Max and Min Sales in a Line Chart | Power BI Interview

Поділитися
Вставка
  • Опубліковано 21 сер 2024
  • Topmate Link to book call 1:1 - topmate.io/lea...
    Link for the Scenario based QnA in Power BI: • Scenario based QnA - P...
    Link for the Power Bi Interview QnA playlist :
    • Power BI Interview QnA
    Link for the SQL QnA playlist :
    • SQL Interview QnA for ...
    Link for the Data Warehousing QnA playlist :
    • DW Concepts Based QnA
    ☀ Connect with me Here on Social Media ☀
    LinkedIn : / shashank-singh-🇮🇳-ba4b...
    Instagram : / shashank_nikumbh26
    Your queries:
    power bi interview questions
    power bi interview questions and answers
    power bi interview
    power bi interview questions for experienced professionals
    power bi interview questions for freshers
    deloitte power bi interview questions
    power bi scenario based interview questions
    power bi service interview questions
    scenario based power bi interview questions
    power bi practice scenarios
    power bi real time scenarios
    shashank singh power bi
    power bi scenario based questions
    sql and power bi interview questions
    capgemini power bi interview questions
    accenture power bi interview questions
    power bi managerial round interview questions
    how to explain project in power bi interview
    power bi roadmap
    power bi jobs for freshers
    power bi project explanation in interview
    power bi resume for freshers
    power bi fresher jobs
    power bi resume
    power bi developer resume
    power bi resume for 2 years experience india
    power bi developer resume for experienced
    #powerbiinterview
    #learnwidgiggs

КОМЕНТАРІ • 67

  • @amandev8794
    @amandev8794 3 місяці тому +1

    Just a smaill correction here, use country column when using 'ALL'
    Max_Point =
    var Max1 = MAXX(all(Orders[Country]),[TotalSales])
    var Max2 = IF(Max1 = [TotalSales], Max1, BLANK())
    Return Max2

  • @thevivekj
    @thevivekj 11 місяців тому +2

    Max Sales =
    CALCULATE(
    MAX(Sales[TotalSales]),
    ALLEXCEPT(Sales, Sales[Country])
    )

  • @rowthulaphani4473
    @rowthulaphani4473 Рік тому +2

    thanks for your great scenarios and i request pls give the sample datasets with the scenarios for best practicing.

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

    Thank you ...with your videos i improved lot in dax ..

  • @deepalibiswal5315
    @deepalibiswal5315 Рік тому +1

    we need to complete 10 page report in a short span , they assigned two BI developers under you. Now question was: How would you decide steps for the flow of project.

  • @bharathkumarthatikonda4982
    @bharathkumarthatikonda4982 11 місяців тому

    Hi, I following all your dax videos and gaining so much of knowledge

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

      Glad to hear this 😊

    • @bharathkumarthatikonda4982
      @bharathkumarthatikonda4982 10 місяців тому

      @@learnwidgiggs Please make a video on complete RLS - Static RLS and Dynamic RLS
      It will be helpful for us

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

    Excellently explained new Dax

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

    You’re videos are really helpful and thank you so much.
    If possible pls post one end to end realtime scenario project in power bi

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

    Thanks for another great scenario based qs

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

    Thanks for another great scenario 😊

  • @sandhyah6089
    @sandhyah6089 3 місяці тому +1

    What table 3 contains? Which table to use in all function?

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

    Thankyou for sharing sir ❤

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

    Thank you sir, keep it up

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

    This Dax doesn't work in 2024 , power bi does not allow direct column name in If statemnet . the TOTAL SALES you mentioned in the DAX is not support now. Please clarify how to proceed.

  • @user-qi8ez8cn2r
    @user-qi8ez8cn2r Рік тому

    Thank you sir for providing information..
    What are the types of KPIs?

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

      KPIs are different for different domains of reports

  • @meharusia9880
    @meharusia9880 11 місяців тому +1

    But the problem is that we can not drill down further. Do you have any solution for that also?

  • @vishalsonawane.8905
    @vishalsonawane.8905 Рік тому

    Thanks For Good Content
    Can We same find Avg point in this line chart?

  • @sambasivarao576
    @sambasivarao576 11 місяців тому +1

    I have a Card visual with Total Sales. I have a country slicer and if I select a country the sales of that country is visible in Card, but if I do not select any country in slicer I need the sales of India in card visual. Can you explain this. This was an interview question.

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

      Use selectedvalue Dax
      I have already covered this scenario in one of the previous video.

  • @nandinireddy2455
    @nandinireddy2455 Рік тому +1

    Instead of Maxx can we use this way
    Calculate(max(total_sales), all(table3))

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

      I don't think so, if this will work.

    • @sr5726
      @sr5726 11 місяців тому

      max(y) works only if y is a column . total_sales is a measure and cannot be used with max.
      However you can create a new table and use maxx on it
      Max_Value =
      var t = CALCULATETABLE(
      ADDCOLUMNS (
      'Table 3',
      "@TotalSales", [TotalSales]
      ),
      ALLSELECTED ()
      )
      return MAXX(t , [@TotalSales]) but MAXX is the short version

  • @ranjith1083
    @ranjith1083 11 місяців тому

    can you suggest me how to take max & min values based on four columns in matrix....those 4 columns are not direct columns they are written as measures.....so that those 2 values should be used in conditional formatting of those 4 columns and color it like heat map....Please suggest

  • @anikeetdey3411
    @anikeetdey3411 10 місяців тому

    please the share the PBIX file with your videos if possible . It will be helpful for us to practice simultaneously .

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

    could you provide us with the sample data to practice on?

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

    Nice

  • @DilipKumar-ch5uu
    @DilipKumar-ch5uu 8 місяців тому

    Hi Shashank,
    Can u pls add pdf or something like material for interview purpose? I need pls

  • @muruganselva7431
    @muruganselva7431 Рік тому +1

    Are you created Datatable "Table3"? this is not explained how to create

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

    Hello, Thanks for the video but I am getting blank instead of max value. What could be the reason ? Please help

    • @ShraddhaBisen-ym9xs
      @ShraddhaBisen-ym9xs 2 місяці тому

      Data Labels should be on, drop down the data labels,apply setting to,series(select Total Sales measure),turn off the Show for this series option.

  • @sr5726
    @sr5726 11 місяців тому

    Thank you for the video. In this case, say I use
    MAXX(ALLSELECTED('Table3'[Country],[Total Sales])
    If I use Field parameters and try to switch between dimensions country/region + somemore from other tables, how you I do an allselected of field parameter's selected dimension. Could you suggest

  • @NaveenKumar-fq4sb
    @NaveenKumar-fq4sb Рік тому

    what about powerBI calls in may months...???

  • @adilumr6359
    @adilumr6359 Рік тому +1

    Why was ALL used here. What would be the difference without ALL

    • @learnwidgiggs
      @learnwidgiggs  Рік тому +1

      To ignore the filter context if any already exists.

    • @HappyAnalysing
      @HappyAnalysing Рік тому +1

      When u apply a measure on any visual, the measure gets filtered by default (depends on the fields that you have used along with the measure in the visual), in this case you’ll not be able to get the max and min values without using ALL function.
      ALL function avoids the filter context in the visual. Hence, the measure identifies the max and min values from the column.

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

      ​@@HappyAnalysing thank u so much alekya ....i confused alot whenever i saw using this ALL function in measures...with your words i can understand clearly what is going on with All function in measure

  • @soutikkumar2750
    @soutikkumar2750 9 місяців тому +1

    Hey, Is there any special DAX in total sales?

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

      Its a simple measure using SUM()

    • @soutikkumar2750
      @soutikkumar2750 9 місяців тому

      @@learnwidgiggs The max point is not showing for me.. Will check again..

    • @belliappaka8152
      @belliappaka8152 8 місяців тому

      ​@@soutikkumar2750even for me Max point is not showing

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

    plz provide the dataset to practise

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

    Hey. Can we change dynamically column name.
    Suppose in Slicer if we select January . In the table i want December sales along with title should be December

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

      Yes it's possible

    • @meghab2910
      @meghab2910 Рік тому +1

      Please make a video on that

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

      Try to make it as soon as possible. I stuck due to this

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

      I think this should work according to your requirement.
      SelectedMonthSales =
      VAR SelectedMonth = SELECTEDVALUE('Date'[Month])
      RETURN
      SUMX(FILTER('Sales', 'Date'[Month] = SelectedMonth), 'Sales'[SalesAmount])

  • @user-ze8zh4lr3b
    @user-ze8zh4lr3b Рік тому +1

    Hello sir. Is it possible to get job in power bi after 10 year gap with out fake experience?

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

      Little difficult to justify the gap. If you can justify the gap, you may get the job.

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

    What would you recommend as the best way to learn dax

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

      Practise the scenario based questions yourself as much as possible.

  • @ashwinkumar5223
    @ashwinkumar5223 10 місяців тому

    PLS SHARE THIS DATASET

  • @user-ze8zh4lr3b
    @user-ze8zh4lr3b Рік тому

    Plz reply

  • @Chetan_15
    @Chetan_15 11 місяців тому

    thanks for your great scenarios and i request pls give the sample datasets with the scenarios for best practicing.