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
@datalytic4 ай бұрын
Is the [TotalSales] a column or measure?
@shivangichaudharip-29483 ай бұрын
@@datalytic Its a measure , I think column wont work when we do calculated measure in IF statement like in this scenario
@padmasattiraju61794 ай бұрын
I am getting two extra straight lines for Maxx and Minx value measures instead of two dots like you showed in the line chart.
@beingrishi645024 күн бұрын
Im not getting the result is there marker need to be used in format visuals???
@trikavyam8101 Жыл бұрын
Thank you ...with your videos i improved lot in dax ..
@learnwidgiggs Жыл бұрын
Glad to hear this.
@sandhyah60898 ай бұрын
What table 3 contains? Which table to use in all function?
@bharathkumarthatikonda4982 Жыл бұрын
Hi, I following all your dax videos and gaining so much of knowledge
@learnwidgiggs Жыл бұрын
Glad to hear this 😊
@bharathkumarthatikonda4982 Жыл бұрын
@@learnwidgiggs Please make a video on complete RLS - Static RLS and Dynamic RLS It will be helpful for us
@rowthulaphani4473 Жыл бұрын
thanks for your great scenarios and i request pls give the sample datasets with the scenarios for best practicing.
@sambasivarao576 Жыл бұрын
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 Жыл бұрын
Use selectedvalue Dax I have already covered this scenario in one of the previous video.
@ranjith1083 Жыл бұрын
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
@Regans5677 Жыл бұрын
Excellently explained new Dax
@learnwidgiggs Жыл бұрын
Thank you 😊
@namrataghosh111 Жыл бұрын
Thanks for another great scenario based qs
@learnwidgiggs Жыл бұрын
Welcome 🙂
@gudaprasanna9986 Жыл бұрын
Thanks for another great scenario 😊
@learnwidgiggs Жыл бұрын
Welcome 😊
@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
@learnwidgiggs Жыл бұрын
welcome, will plan.
@vishalsonawane.8905 Жыл бұрын
Thanks For Good Content Can We same find Avg point in this line chart?
@marlonetzel64503 ай бұрын
I copied your function and it works, except the data label. IF i turn the data labels off there are non but if i turn them on, there are shown for every data point and not just for the min & max values.
@meharusia9880 Жыл бұрын
But the problem is that we can not drill down further. Do you have any solution for that also?
@atharwaborkar67786 ай бұрын
@mouniakula-o1q29 күн бұрын
Hi Shashank sir, This didn't work for me though am using same dax, its not highlighting only max data label. Max = Var Mmax=MAXX(ALL('Customer'),[sales]) Var Check=IF(Mmax=[sales],Mmax,BLANK()) Return Check
@hbshemati5138 Жыл бұрын
could you provide us with the sample data to practice on?
@bhagisrivally11 ай бұрын
Hello, Thanks for the video but I am getting blank instead of max value. What could be the reason ? Please help
@ShraddhaBisen-ym9xs7 ай бұрын
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.
@thevivekj Жыл бұрын
Max Sales = CALCULATE( MAX(Sales[TotalSales]), ALLEXCEPT(Sales, Sales[Country]) )
@soutikkumar2750 Жыл бұрын
Hey, Is there any special DAX in total sales?
@learnwidgiggs Жыл бұрын
Its a simple measure using SUM()
@soutikkumar2750 Жыл бұрын
@@learnwidgiggs The max point is not showing for me.. Will check again..
@belliappaka8152 Жыл бұрын
@@soutikkumar2750even for me Max point is not showing
@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 Жыл бұрын
Yes it's possible
@meghab2910 Жыл бұрын
Please make a video on that
@meghab2910 Жыл бұрын
Try to make it as soon as possible. I stuck due to this
@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])
@NaveenKumar-fq4sb Жыл бұрын
what about powerBI calls in may months...???
@deepanshubhandarivlogs5726 Жыл бұрын
Thankyou for sharing sir ❤
@learnwidgiggs Жыл бұрын
Welcome deepanshu 😊
@DilipKumar-ch5uu Жыл бұрын
Hi Shashank, Can u pls add pdf or something like material for interview purpose? I need pls
@deepanshubiswal5315 Жыл бұрын
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.
@deboltraja221211 ай бұрын
How would you answer
@adilumr6359 Жыл бұрын
What would you recommend as the best way to learn dax
@learnwidgiggs Жыл бұрын
Practise the scenario based questions yourself as much as possible.
@muruganselva7431 Жыл бұрын
Are you created Datatable "Table3"? this is not explained how to create
@learnwidgiggs Жыл бұрын
Using Calender DAX function.
@sakshinaik05 Жыл бұрын
plz provide the dataset to practise
@perfectionist6624 Жыл бұрын
Thank you sir, keep it up
@learnwidgiggs Жыл бұрын
Welcome😊
@nandinireddy2455 Жыл бұрын
Instead of Maxx can we use this way Calculate(max(total_sales), all(table3))
@learnwidgiggs Жыл бұрын
I don't think so, if this will work.
@sr5726 Жыл бұрын
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
@anikeetdey3411 Жыл бұрын
please the share the PBIX file with your videos if possible . It will be helpful for us to practice simultaneously .
@LaxmiChinta-q1z Жыл бұрын
Thank you sir for providing information.. What are the types of KPIs?
@learnwidgiggs Жыл бұрын
KPIs are different for different domains of reports
@simanchalpadhy-u7m Жыл бұрын
Hello sir. Is it possible to get job in power bi after 10 year gap with out fake experience?
@learnwidgiggs Жыл бұрын
Little difficult to justify the gap. If you can justify the gap, you may get the job.
@kastenivkimbo5347 Жыл бұрын
Nice
@learnwidgiggs Жыл бұрын
thnx
@sr5726 Жыл бұрын
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
@ashwinkumar5223 Жыл бұрын
PLS SHARE THIS DATASET
@adilumr6359 Жыл бұрын
Why was ALL used here. What would be the difference without ALL
@learnwidgiggs Жыл бұрын
To ignore the filter context if any already exists.
@HappyAnalysing Жыл бұрын
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 Жыл бұрын
@@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
@simanchalpadhy-u7m Жыл бұрын
Plz reply
@Chetan_15 Жыл бұрын
thanks for your great scenarios and i request pls give the sample datasets with the scenarios for best practicing.