Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
ngsolanki
Regular Visitor

Progress or Status Chart

Hello,

I am seeking assistance in tracking the status of the manufacturing process for batches in Power BI. I would like to visualize the manufacturing steps on the X-axis and the batch numbers on the Y-axis, with each point indicating the corresponding status.

I have attached an example for reference. Any help or guidance would be greatly appreciated.

Thank you in advance!
img_0957.jpg

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ngsolanki ,
As I mentioned above, regarding the x-axis sorting follows numerical or alphabetical order, so you can create a column that contains an index.

Index_Status = 
SWITCH(
    TRUE(),
    'Table'[Status] = "Coc",CONCATENATE("1_",'Table'[Status]),
    'Table'[Status] = "Tablet EBR reivew",CONCATENATE("2_",'Table'[Status]),
    'Table'[Status] = "Tablet Manufacturing",CONCATENATE("3_",'Table'[Status]),
    'Table'[Status] = "HME Manufacturing",CONCATENATE("4_",'Table'[Status]),
    'Table'[Status] = "Shipped",CONCATENATE("5_",'Table'[Status])
)


Then for the y-axis you can't do a precise creation of a category, but you can set the level for it

vheqmsft_0-1730078307252.png

vheqmsft_1-1730078331833.png

Final output

vheqmsft_2-1730078350668.png

 

Best regards,
Albert He


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

 

 

 

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @ngsolanki ,
Based on your description, you can try to build a visualization using a scatterplot, on the y-axis you need to make sure that your batch number is of numeric type, of course the y-axis is separated by equal quantities so it won't be able to display your batch number exactly as it is, but you can mouse over the scatter in order to determine the batch number. For the x-axis, the default order is numerical or alphabetical, but if you want to display by process, you can prefix all your processes with a sequential number
Scatter, bubble, and dot plot charts in Power BI - Power BI | Microsoft Learn

vheqmsft_0-1729835261644.png

 

Best regards,
Albert He


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Hi @Anonymous 

 

Thank you for looking into it. I was able to do somethign like this but the x-axis is sorting and process flow is not right. Is there a way to fix the flow? Is there a way to make y-axis categorical? 

Anonymous
Not applicable

Hi @ngsolanki ,
As I mentioned above, regarding the x-axis sorting follows numerical or alphabetical order, so you can create a column that contains an index.

Index_Status = 
SWITCH(
    TRUE(),
    'Table'[Status] = "Coc",CONCATENATE("1_",'Table'[Status]),
    'Table'[Status] = "Tablet EBR reivew",CONCATENATE("2_",'Table'[Status]),
    'Table'[Status] = "Tablet Manufacturing",CONCATENATE("3_",'Table'[Status]),
    'Table'[Status] = "HME Manufacturing",CONCATENATE("4_",'Table'[Status]),
    'Table'[Status] = "Shipped",CONCATENATE("5_",'Table'[Status])
)


Then for the y-axis you can't do a precise creation of a category, but you can set the level for it

vheqmsft_0-1730078307252.png

vheqmsft_1-1730078331833.png

Final output

vheqmsft_2-1730078350668.png

 

Best regards,
Albert He


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

 

 

 

lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).

Do not include sensitive information. Do not include anything that is unrelated to the issue or question.

Need help uploading data? https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...

Please show the expected outcome based on the sample data you provided.

Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

HI Ibendlin, 

 

Please see below for data set, really small data set.

 

That process flow as following- HME manufacturing --> HME release --> HME EBR review --> Tablet manufacturing --> Tablet Release -->Tablet EBR review --> shipping 

 

I wanted to have the chart as I shown ealier but I am open to ther ideas as well. 

 

Thanks,

 

Batch Status 
2401365Tablet EBR reivew 
2402365HME Manufacturing 
2409687CoC
2410758Shipped 
2411788Tablet Manufacturing 
2412799Tablet EBR reivew 

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors