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
sprotson
Helper I
Helper I

Merging query on itself using value -1

In my scenario I have a query which contains audit data - how an item has changed thorugh time. Each record in the query has an ID number, a version number and the value of various other columns of that version.

 

Simple example below of 5 versions of the same item

 

BCIDVersionValue
11a
12b
13c
14d
15e

 

 

I want to be able to merge this query on itself in order to show the values of the previous version side by side, ie

 

BCIDVersionValuePrev VersionPrev Value
11a  
12b1a
13c2b
14d3c
15e4

d

 

So far I have taken a duplicate of the query and then I do a standard left merge on BCID=BCID and BCVersion=BCVersion.

I then adjust in the formula bar the join on BCVersion, as I want it to with be BCVersion=BCVersion-1, ie the previous version

 

 

 

 

= Table.NestedJoin(#"Application_Versions (2)", {"BCID", "BCVersion"}, #"Application_Versions (3)", {"BCID", "BCVersion"-1}, "Application_Versions (3)", JoinKind.LeftOuter)

 

 

 

 

Both the BCVersion and BCID columns are whole number.

I get the following error

 

Expression.Error: We cannot apply operator - to types Text and Number

 

Any thoughts how I can achieve my goal?

1 ACCEPTED SOLUTION
edhans
Super User
Super User

Hi @sprotson The 2nd and 4th parameters of the join function are column names, which are text. You cannot do any math on them to increment rows.

 

Take a look at this code:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSAeNEpVgdCM8IiJPgPGMgTobzTIA4Bc4zBeJUpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [BCID = _t, Version = _t, Value = _t]),
    ShiftedTable = {null} & List.RemoveLastN(Table.Column(Source, "Version"), 1),
    OtherColumn = {null} & Table.SelectRows(Source, each List.Contains(ShiftedTable, [Version]))[Value],
    NestedLists = Table.ToColumns(Source) & {ShiftedTable} & {OtherColumn},
    BackToTable = Table.FromColumns(NestedLists, Table.ColumnNames(Source) & {"Previous Row"} & {"Previous Value"})
in
    BackToTable

This will take this table:

edhans_0-1599497825988.png

and convert to this table:

edhans_2-1599497902964.png

THis is based somewhat on Imke's article here, but hers goes into much more detail using a custom function. Mine assume you only need to compare the Value to Previous Value. You can add more columns in the transformation by adding lists in the NestedLists step and adding those column names in the final step.

How to use M code provided in a blank query:
1) In Power Query, select New Source, then Blank Query
2) On the Home ribbon, select "Advanced Editor" button
3) Remove everything you see, then paste the M code I've given you in that box.
4) Press Done
5) See this article if you need help using this M code in your model.

 

The other way to do this is to add two indexes to your table. The first starting with 1, then the 2nd starting with 0, then merge the table with itself using the  Index1 column in the first table with the Index0 in the 2nd table.

 

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

4 REPLIES 4
FrankAT
Community Champion
Community Champion

Hi @sprotson 

you can do it like this:

 

// Table
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSAeNEpVgdCM8IiJPgPGMgTobzTIA4Bc4zBeJUpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [BCID = _t, Version = _t, Value = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"BCID", Int64.Type}, {"Version", Int64.Type}, {"Value", type text}}),
    #"Added Index" = Table.AddIndexColumn(#"Changed Type", "Index", 0, 1, Int64.Type),
    #"Added Custom" = Table.AddColumn(#"Added Index", "Prev Version", each try #"Added Index"[Version]{[Index]-1} otherwise null ),
    Custom1 = Table.AddColumn(#"Added Custom", "Prev Value", each try #"Added Index"[Value]{[Index]-1} otherwise null ),
    #"Changed Type1" = Table.TransformColumnTypes(Custom1,{{"Prev Version", Int64.Type}, {"Prev Value", type text}}),
    #"Removed Columns" = Table.RemoveColumns(#"Changed Type1",{"Index"})
in
    #"Removed Columns"

 

08-09-_2020_00-56-11.png

 

With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)

edhans
Super User
Super User

Hi @sprotson The 2nd and 4th parameters of the join function are column names, which are text. You cannot do any math on them to increment rows.

 

Take a look at this code:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSAeNEpVgdCM8IiJPgPGMgTobzTIA4Bc4zBeJUpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [BCID = _t, Version = _t, Value = _t]),
    ShiftedTable = {null} & List.RemoveLastN(Table.Column(Source, "Version"), 1),
    OtherColumn = {null} & Table.SelectRows(Source, each List.Contains(ShiftedTable, [Version]))[Value],
    NestedLists = Table.ToColumns(Source) & {ShiftedTable} & {OtherColumn},
    BackToTable = Table.FromColumns(NestedLists, Table.ColumnNames(Source) & {"Previous Row"} & {"Previous Value"})
in
    BackToTable

This will take this table:

edhans_0-1599497825988.png

and convert to this table:

edhans_2-1599497902964.png

THis is based somewhat on Imke's article here, but hers goes into much more detail using a custom function. Mine assume you only need to compare the Value to Previous Value. You can add more columns in the transformation by adding lists in the NestedLists step and adding those column names in the final step.

How to use M code provided in a blank query:
1) In Power Query, select New Source, then Blank Query
2) On the Home ribbon, select "Advanced Editor" button
3) Remove everything you see, then paste the M code I've given you in that box.
4) Press Done
5) See this article if you need help using this M code in your model.

 

The other way to do this is to add two indexes to your table. The first starting with 1, then the 2nd starting with 0, then merge the table with itself using the  Index1 column in the first table with the Index0 in the 2nd table.

 

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

Thanks

 

I understand that the merge formula detaisl the names of the columns, but surely the execution of the join is on the contents of those columns - so strange you could not adjust the formula in this way, as I could in other tools

 

For a novice like myself, I think the best approiach is going to be the indexes - easy to understand, although technically what it is going to do is exclude any item that is at version 1, as there is no previous version to match against.

 

I think ultimately, the best option is going to make sure I get the data in the correct format before it reaches Power BI. I can easily join a table on itself in sql as I am tryign to do here.

 

I was hopeful I could easily do it in Power BI, in case I am not using a sql db, but the formula you provided is way above my knowledge currently

 

I can apply it as a new source easily, but to be hinest, I am not sure how I would apply it in a real world example. ie how do I apply it to a query I already have and specifiy what columns should move down a row etc

 

Thanks your help anyway

amitchandak
Super User
Super User

@ImkeF , @edhans , can you help on this

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.