Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi ,
Can anyone advice how to achieve TOP N + others in Power BI with Live Connection (Don’t have option to create calculated columns or Calculated table both are greyed out). Something live below
Solved! Go to Solution.
Hi @BSPAVAN86 ,
You can create a measure to get your expected output. I made a sample and please follow these steps.
Sample data:
Create a measure. (Here, my others is "LL Road Frame".)
Measure =
VAR _top3 =
TOPN (
3,
ALL ( 'Product'[Model Name] ),
CALCULATE ( SUM ( 'Product'[Dealer Price] ) ), DESC
)
RETURN
IF (
HASONEVALUE ( 'Product'[Model Name] ),
SWITCH (
TRUE (),
SELECTEDVALUE ( 'Product'[Model Name] ) = "LL Road Frame", SUM ( 'Product'[Dealer Price] ),
CALCULATE ( SUM ( 'Product'[Dealer Price] ), KEEPFILTERS ( _top3 ) )
)
)
Final output:
Best Regards,
Community Support Team _ xiaosun
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @BSPAVAN86 ,
You can create a measure to get your expected output. I made a sample and please follow these steps.
Sample data:
Create a measure. (Here, my others is "LL Road Frame".)
Measure =
VAR _top3 =
TOPN (
3,
ALL ( 'Product'[Model Name] ),
CALCULATE ( SUM ( 'Product'[Dealer Price] ) ), DESC
)
RETURN
IF (
HASONEVALUE ( 'Product'[Model Name] ),
SWITCH (
TRUE (),
SELECTEDVALUE ( 'Product'[Model Name] ) = "LL Road Frame", SUM ( 'Product'[Dealer Price] ),
CALCULATE ( SUM ( 'Product'[Dealer Price] ), KEEPFILTERS ( _top3 ) )
)
)
Final output:
Best Regards,
Community Support Team _ xiaosun
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@BSPAVAN86 , I doubt that, in month the approaches you need a table or column, you need get it created in source
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
11 | |
10 | |
10 |