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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
RichaBansal
New Member

the number of times unpivoting a row

Hi PBI Experts,

 

RichaBansal_0-1712061812129.png

 

Can we achieve this?

 

Many many thanks in advance.

2 ACCEPTED SOLUTIONS
Joe_Barry
Responsive Resident
Responsive Resident

Hi @RichaBansal 

 

With that exact data no, but if the Start and End Columns were formated as dates, then yes.

 

  • Add a custom column  to create month amount between dates

 

Date.Year([End])*12+Date.Month([End])-Date.Year([Start])*12-Date.Month([Start])​

 

  • Create a column to calculate Monthly Amount

 

[Amount]/ [Custom]​

 

  • Create another column called "Intervals" 

 

List.Numbers(1,[Custom])​

 

  • Then add another to create the months 

 

Date.StartOfMonth(
  Date.AddMonths(
    [Start],
    [Intervals] -1
  )
))​

 

This should help

Joe

 

If you found my answer helpful and it solved your issue, please accept as solution

View solution in original post

I think I missed a step. You will need to expand the list to new rows before adding the last step

View solution in original post

6 REPLIES 6
Joe_Barry
Responsive Resident
Responsive Resident

Hi @RichaBansal 

 

With that exact data no, but if the Start and End Columns were formated as dates, then yes.

 

  • Add a custom column  to create month amount between dates

 

Date.Year([End])*12+Date.Month([End])-Date.Year([Start])*12-Date.Month([Start])​

 

  • Create a column to calculate Monthly Amount

 

[Amount]/ [Custom]​

 

  • Create another column called "Intervals" 

 

List.Numbers(1,[Custom])​

 

  • Then add another to create the months 

 

Date.StartOfMonth(
  Date.AddMonths(
    [Start],
    [Intervals] -1
  )
))​

 

This should help

Joe

 

If you found my answer helpful and it solved your issue, please accept as solution

Hi Joe,

 

The start and end are dates. I got the list of numbers, but the Last column shows error.

RichaBansal_1-1712131774661.png

 

 

I think I missed a step. You will need to expand the list to new rows before adding the last step

Worked like a charm 🙂

Thank you Joe. Have a pleasant day.

This will work only in case when Start and End are defined as dates. @RichaBansal, let us know if input Start and End are dates or just text "Jan" and "April"


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

@RichaBansal, in case you have input stored as text, try this:

 

Result:

dufoq3_1-1712067284989.png

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8krMU9JRciwoyswB0oYGIKAUGwsA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Start = _t, End = _t, Amount = _t]),
    Transformed = Table.TransformColumns(Source, {
        {"Start", each Date.Month(Date.FromText("2024" & Text.Start(_,3) & "01", [Format="yyyyMMMdd", Culture="en-US"])), Int64.Type},
        {"End", each Date.Month(Date.FromText("2024" & Text.Start(_,3) & "01", [Format="yyyyMMMdd", Culture="en-US"])), Int64.Type},
        {"Amount", Number.From, type number}
}),
    Ad_FinalTable = Table.AddColumn(Transformed, "FinalTable", each 
        [ a = [Amount] / ([End]-[Start]+1),
          b = List.Transform({[Start]..[End]}, (x)=> Date.ToText(#date(2024,x,1), "MMM", "en-US")),
          c = Table.FromColumns({ b, List.Repeat({a}, List.Count(b)) }, type table[Month=text, Amount=number])
        ][c], type table),
    FinalTable = Table.Combine(Ad_FinalTable[FinalTable])
in
    FinalTable

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors
Top Kudoed Authors