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 All
I have a table which compute slow moving items , i like to plot the chart for those items in red box.
Bar Chart On Hand Amt By BRAND_C ?
My PBI file
Paul
Solved! Go to Solution.
Hi @Anonymous ,
I updated your sample pbix file(see attachment), please check whether that is what you want.
1. Create a calculated column Column_SHOW_NEW_Y as my previous post
Column_SHOW_NEW_Y =
IF (
TODAY () - INVC[Last Sales] > 3 * 365
&& INVC[Last Sales] <> BLANK (),
1,
0
)
2. Create a clustered column chart(Axis: BRAND_C Values: Amt_On_Hand) and add visual-level filter(Column_SHOW_NEW_Y=1)
Best Regards
Hi Amit
Thank you for your advise , but it is possible for you to advise me how to plot the bar chart for those on hand amt >1 by BRAND_C ?
Hi @Anonymous ,
Please check whether the below screenshot is what you want, you can find the details in the attachment.
1. Create a bar chart: Axis: BRAND_C Values: Amt_On_Hand
2. Set the visual level filter for the bar chart: Amt_On_Hand>1
Best Regards
Hi Ying
Thank you for help me create the bar chart , but that chart is overall stock amount include those slow moving items. what i need is plot the slow moving items amount only.
my PBI file at above link
Hi @Anonymous ,
It is due to missing the filter "_SLOW_NEW=1" in bar chart when compare to the table. Please create a calculated column to replace the original measure [_SLOW_NEW]. You can find the details in the attachment.
_0SLOW_NEW =
IF (
TODAY () - INVC[Last Sold Date] > 3 * 365
&& INVC[Last Sold Date] <> BLANK (),
1,
0
)
Best Regards
Hi Ying
I try to duplicate your bar chart to my actual PBI file , i can not get it plot amount by Brand_C.
My PBI file :-
Paul
Hi @Anonymous ,
I updated your sample pbix file(see attachment), please check whether that is what you want.
1. Create a calculated column Column_SHOW_NEW_Y as my previous post
Column_SHOW_NEW_Y =
IF (
TODAY () - INVC[Last Sales] > 3 * 365
&& INVC[Last Sales] <> BLANK (),
1,
0
)
2. Create a clustered column chart(Axis: BRAND_C Values: Amt_On_Hand) and add visual-level filter(Column_SHOW_NEW_Y=1)
Best Regards
Thank you very much for your help , it work fine now.
Hi Amit
Thank you very much , it work fine now.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.