Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.