Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi All,
I have the following bar chart that show sales oper sales person:
So the data is here filtered for 2022 and for a region. This region for example has 4 Salesman. I added an average line as a measure which caclulates basically: whole sales (from all regions)/all salesman
Now I have this line but it shows everytime the same value. Is it possible to only show the value once, like at the end? Otherwise there are so much numbers....
Thanks and best regards 🙂
Solved! Go to Solution.
Hi @DinEileen ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
SUMMARIZE('Table','Table'[Region],'Table'[Salesman])
2. Create calculated column.
Rank =
RANKX(FILTER('Table 2','Table 2'[Region]=EARLIER('Table 2'[Region])),'Table 2'[Salesman],,ASC)
3. Create measure.
Avg =
AVERAGEX(ALL('Table'),'Table'[Amount])
Measure =
var _region=SELECTEDVALUE('Table'[Region])
var _max=MAXX(FILTER(ALL('Table 2'),'Table 2'[Region]=MAX('Table 2'[Region])),[Rank])
var _maxSalesman=MAXX(FILTER(ALL('Table 2'),'Table 2'[Rank]=_max&&'Table 2'[Region]=_region),[Salesman])
var _allmax=MAXX(ALL('Table 2'),[Rank])
var _allmaxSalesman=MAXX(FILTER(ALL('Table 2'),'Table 2'[Rank]=_max),[Salesman])
return
IF(
HASONEVALUE('Table'[Region])&&
MAX('Table'[Salesman])=_maxSalesman,[Avg],
IF(
NOT( ISINSCOPE('Table'[Region]))&&MAX('Table'[Salesman])=_allmaxSalesman,[Avg],
BLANK()))
4. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @DinEileen ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
SUMMARIZE('Table','Table'[Region],'Table'[Salesman])
2. Create calculated column.
Rank =
RANKX(FILTER('Table 2','Table 2'[Region]=EARLIER('Table 2'[Region])),'Table 2'[Salesman],,ASC)
3. Create measure.
Avg =
AVERAGEX(ALL('Table'),'Table'[Amount])
Measure =
var _region=SELECTEDVALUE('Table'[Region])
var _max=MAXX(FILTER(ALL('Table 2'),'Table 2'[Region]=MAX('Table 2'[Region])),[Rank])
var _maxSalesman=MAXX(FILTER(ALL('Table 2'),'Table 2'[Rank]=_max&&'Table 2'[Region]=_region),[Salesman])
var _allmax=MAXX(ALL('Table 2'),[Rank])
var _allmaxSalesman=MAXX(FILTER(ALL('Table 2'),'Table 2'[Rank]=_max),[Salesman])
return
IF(
HASONEVALUE('Table'[Region])&&
MAX('Table'[Salesman])=_maxSalesman,[Avg],
IF(
NOT( ISINSCOPE('Table'[Region]))&&MAX('Table'[Salesman])=_allmaxSalesman,[Avg],
BLANK()))
4. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@DinEileen , Create a measure like
calculate(averagex(Values(Table[Salesman]), [Sales]) , allselected())
HI ,@amitchandak,
I have my average already. I want that the data label only appears ones.
Thanks and BR
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.