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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Patrick90
New Member

Table Layout Design, Production Schedule

Hello, I have an issue with creating an appropriate table in Power BI, which is meant to serve as a production schedule for the upcoming days on a specific machine, outlining the next production run for each day and shift. I kindly request assistance in designing such a table. The data will be sourced from an Excel file, but I am uncertain about how to structure the table layout within Power BI.

I am attaching an example of how the production schedule table should look in Power BI.

 

production plan.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Patrick90 ,

I created a sample pbix file(see the attachment), please check if that is what you want.

1. Create two dimension tables as below screenshot

Dimension table: MachineProductionDimension table: MachineProduction

Dimension table: SieDimension table: Sie

2. Create a measure as below to get the next production

NextProductionP = 
VAR _selmachine =
    SELECTEDVALUE ( 'MachineProduction'[Machine] )
VAR _selprod =
    SELECTEDVALUE ( 'MachineProduction'[Production] )
VAR _selsei =
    SELECTEDVALUE ( Sie[Sie] )
VAR _selshift =
    SELECTEDVALUE ( 'Plan'[Shift] )
RETURN
    CALCULATE (
        MAX ( 'Plan'[Next production] ),
        FILTER (
            'Plan',
            'Plan'[Machine] = _selmachine
                && SEARCH ( _selsei, 'Plan'[Start], 1, 0 ) > 0
        )
    )

3. Create a matrix visual as below screenshot

vyiruanmsft_0-1692598497829.png

Best Regards

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Patrick90 ,

I created a sample pbix file(see the attachment), please check if that is what you want.

1. Create two dimension tables as below screenshot

Dimension table: MachineProductionDimension table: MachineProduction

Dimension table: SieDimension table: Sie

2. Create a measure as below to get the next production

NextProductionP = 
VAR _selmachine =
    SELECTEDVALUE ( 'MachineProduction'[Machine] )
VAR _selprod =
    SELECTEDVALUE ( 'MachineProduction'[Production] )
VAR _selsei =
    SELECTEDVALUE ( Sie[Sie] )
VAR _selshift =
    SELECTEDVALUE ( 'Plan'[Shift] )
RETURN
    CALCULATE (
        MAX ( 'Plan'[Next production] ),
        FILTER (
            'Plan',
            'Plan'[Machine] = _selmachine
                && SEARCH ( _selsei, 'Plan'[Start], 1, 0 ) > 0
        )
    )

3. Create a matrix visual as below screenshot

vyiruanmsft_0-1692598497829.png

Best Regards

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.