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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
AndreasSchippan
Regular Visitor

Production slot visualization

Hi all,

 

I have a questions about visualization of production slots. 

We have defined per unit type a min and a max quantity. lets say each the Maschine A & B has a min of 1 and a max of 3 units. Now I want to show a visual like the drawn one below. Each unit is in a separate column. in case we do not have 3 units on stock, the last box should be transparent (see second image). I now just painted that as I have no idea, how I could build this in Power BI.

 

AndreasSchippan_1-1741872342940.png

AndreasSchippan_2-1741872750657.png

 

Best regards,

Andreas

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @AndreasSchippan  - If you want a more customized look, you can:

Use a Table Visual with Machine & Slot.
Add a Custom Measure to display an icon (e.g., square emoji 🟨 for filled, or an empty character for transparent).
Use a Card Visual for each slot, layered in a grid format.

rajendraongole1_0-1741874167324.png

Slot_Display =
IF( SELECTEDVALUE('Table'[Property Code]) = 1135, "🟨", "" )

 

https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-table-formatting





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

1 REPLY 1
rajendraongole1
Super User
Super User

Hi @AndreasSchippan  - If you want a more customized look, you can:

Use a Table Visual with Machine & Slot.
Add a Custom Measure to display an icon (e.g., square emoji 🟨 for filled, or an empty character for transparent).
Use a Card Visual for each slot, layered in a grid format.

rajendraongole1_0-1741874167324.png

Slot_Display =
IF( SELECTEDVALUE('Table'[Property Code]) = 1135, "🟨", "" )

 

https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-table-formatting





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors