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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Make Sharepoint list to be like an Excel file

Im buiding a dashboard for someone who would like it to look exactly like an excel spreadsheet and they just need a simple slider and a total column (and to be autoupdated),

 

for forum.png

 

However i had to transform the data to have the date column accross the top of the spread sheet see image, my questions are how do i 

 

Move some rows up and down.

Change some of the rows back to percentages

Add a total column 

 

Could anyone help?

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

Hi @Anonymous ,

You can go to query editor and do unpivot columns on your fields to merge them to attribute and value. After these steps, you can simply calculate on transformed records.

Unpivot columns (Power Query)
BTW, you can't direct modify data model tables to custom records. You can consider to use union function to create a new table with original records and custom records.

NEW TABLE =
UNION (
    Table,
    UNION (
        ROW ( "Column", "ABC", "Column2", DATE ( 2018, 1, 1 ), "Column3", 123 ),
        ROW ( "Column", "A3C", "Column2", DATE ( 2018, 1, 2 ), "Column3", 223 ),
        ROW ( "Column", "AE", "Column2", DATE ( 2018, 1, 3 ), "Column3", 133 )
    )
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @Anonymous ,

You can go to query editor and do unpivot columns on your fields to merge them to attribute and value. After these steps, you can simply calculate on transformed records.

Unpivot columns (Power Query)
BTW, you can't direct modify data model tables to custom records. You can consider to use union function to create a new table with original records and custom records.

NEW TABLE =
UNION (
    Table,
    UNION (
        ROW ( "Column", "ABC", "Column2", DATE ( 2018, 1, 1 ), "Column3", 123 ),
        ROW ( "Column", "A3C", "Column2", DATE ( 2018, 1, 2 ), "Column3", 223 ),
        ROW ( "Column", "AE", "Column2", DATE ( 2018, 1, 3 ), "Column3", 133 )
    )
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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