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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

mapping function for floor plan management

Does BI have a mapping function to play with the row length for people in a stadium seating? Is there something like CAD that can be implemented in BI in an efficient way? I need something that allows us to insert different row values to see various layouts that would allow us to accommodate the total number of people.

1 ACCEPTED SOLUTION
v-gizhi-msft
Community Support
Community Support

Hi,

 

According to your description, i create an example to show:

1)Create five What-If parameters for end user to choose the info about seat and stadium.

51.PNG

Then create this measure to calculate the total number of people(seats):

Total Number of People =
ROUND (
    SELECTEDVALUE ( Length[Length] )
        / (
            SELECTEDVALUE ( 'Seat Length'[Seat Length] )
                + SELECTEDVALUE ( 'Seat Gap'[Seat Gap] )
        ),
    0
)
    * ROUND (
        SELECTEDVALUE ( Width[Width] )
            / (
                SELECTEDVALUE ( 'Seat Width'[Seat Width] )
                    + SELECTEDVALUE ( 'Seat Gap'[Seat Gap] )
            ),
        0
    )

When select slicers, the result shows:

50.PNG

Hope this cam help.

 

Best Regards,

Giotto ZHi

View solution in original post

1 REPLY 1
v-gizhi-msft
Community Support
Community Support

Hi,

 

According to your description, i create an example to show:

1)Create five What-If parameters for end user to choose the info about seat and stadium.

51.PNG

Then create this measure to calculate the total number of people(seats):

Total Number of People =
ROUND (
    SELECTEDVALUE ( Length[Length] )
        / (
            SELECTEDVALUE ( 'Seat Length'[Seat Length] )
                + SELECTEDVALUE ( 'Seat Gap'[Seat Gap] )
        ),
    0
)
    * ROUND (
        SELECTEDVALUE ( Width[Width] )
            / (
                SELECTEDVALUE ( 'Seat Width'[Seat Width] )
                    + SELECTEDVALUE ( 'Seat Gap'[Seat Gap] )
            ),
        0
    )

When select slicers, the result shows:

50.PNG

Hope this cam help.

 

Best Regards,

Giotto ZHi

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.