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

Split a single row into multiple rows

Hello Power BI community,

 

I am new to power BI and DAX therefore my skills are kinda of limited. I have to split a single row into multiple rows. let me illustrate my request :

 

Employee IDmonthsalary bonus
1Annual120003000

 

The month cell is supposed to have 12 month in stead of annual and i am supposed to have the salary and the bonus split into month (so divided by 12). The final result I am expecting should look like this:

Employee IDmonthsalary bonus
1january 1000250
1february1000250
1march1000250
1april1000250
1may1000250
1june1000250
1july1000250
1august1000250
1september1000250
1october1000250
1november1000250
1december1000250

 

So I wanted to know if it is possible to do that directly in Power BI or i have to change everything in the excel sheet?

 

Thank you 🙂

1 ACCEPTED SOLUTION
PattemManohar
Community Champion
Community Champion

@Anonymous  Please try with below steps:

 

1. Create a new MonthName table from your existing DimDate table (if you don't have one, create a Date table)

_DimMonth = VALUES(_Date[Date].[Month])

2. Then, create a new table as below which will be your expected output

Test273Out = CROSSJOIN(SELECTCOLUMNS(Test273SplitRows,"EmployeeID",Test273SplitRows[EmployeeID],"Salary",Test273SplitRows[Salary]/12,"Bonus",Test273SplitRows[Bonus]/12),_DimMonth)

image.png        image.png





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

Proud to be a PBI Community Champion




View solution in original post

1 REPLY 1
PattemManohar
Community Champion
Community Champion

@Anonymous  Please try with below steps:

 

1. Create a new MonthName table from your existing DimDate table (if you don't have one, create a Date table)

_DimMonth = VALUES(_Date[Date].[Month])

2. Then, create a new table as below which will be your expected output

Test273Out = CROSSJOIN(SELECTCOLUMNS(Test273SplitRows,"EmployeeID",Test273SplitRows[EmployeeID],"Salary",Test273SplitRows[Salary]/12,"Bonus",Test273SplitRows[Bonus]/12),_DimMonth)

image.png        image.png





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

Proud to be a PBI Community Champion




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.