Reply
K_Stevs1
Regular Visitor
Partially syndicated - Outbound

Create a lookup in powerbi power query

Hi,

 

Is there a way to get the text from 'column A' based on 'ref number' being the same and the previous date? 

 

e.g. 

extract         | Ref Number | status 

01/03/2023 |  12                | A

01/03/2023 |  132              | C

01/04/2023 |  12                | A

01/04/2023 |  132              | C

01/05/2023 |  12                | B

01/05/2023 |  132              | C

01/06/2023 |  12                | B

01/06/2023 |  132              | C

01/06/2023 |  12                | A

01/06/2023 |  132              | C

 

I would like to add two columns that show

 

A = Top status and C = bottom status,  Changes = up arrow, down arrow or - (for the same)

extract         | Ref Number | [Current] status  | Previous status  | Change

01/03/2023 |  12                | A                        | -                         | - 

01/03/2023 |  132              | C                        | -                         | -

01/04/2023 |  12                | A                        | A                        | ↔️  

01/04/2023 |  132              | C                        | C                        | ↔️

01/05/2023 |  12                | B                        | A                        | ⬇️

01/05/2023 |  132              | C                        | C                        | ↔️

01/06/2023 |  12                | B                        | B                        | ↔️

01/06/2023 |  132              | C                        | C                       | ↔️

01/06/2023 |  12                | A                        | B                       | ↗️

01/06/2023 |  132              | C                        | C                       | ↔️

 

 

Thank you for taking the time to read this post and for any help you maybe able to offer.

1 ACCEPTED SOLUTION

Syndicated - Outbound

Hi @K_Stevs1 

1.If you want to implement it in power query, you can put the following code to advanced editor

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMtQ31jcyMDJW0lEyNAISjkqxOqiixiBhZ6iwCVbFJtgVm6IodsIQRVFshlWxGTGKHXEqjgUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [extract = _t, #"Ref Number" = _t, status = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"extract", type date}, {"Ref Number", Int64.Type}, {"status", type text}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Ref Number"}, {{"Data", each Table.AddIndexColumn(_,"Index",1,1)
, type table }}),
    #"Expanded Data" = Table.ExpandTableColumn(#"Grouped Rows", "Data", {"extract", "status", "Index"}, {"extract", "status", "Index"}),
    #"Added Custom" = Table.AddColumn(#"Expanded Data", "Previous status", each List.Min(Table.SelectRows(#"Expanded Data",(x)=>x[Ref Number]=[Ref Number] and x[Index]=[Index]-1)[status])),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom", each if [Previous status]=null then null else if [Previous status]=[status] then "←→" else if [Previous status]<[status] then "⬇" else if [Previous status]>[status] then "⬆" else null),
    #"Renamed Columns" = Table.RenameColumns(#"Added Custom1",{{"Custom", "Change"}})
in
    #"Renamed Columns"

Output

vxinruzhumsft_0-1703488750208.png

2.After create the previous column ,It is better to use measure to format the previous column instead of create the change column , you can refer to the following measure.

Format =
SWITCH (
    TRUE (),
    ISBLANK ( MAX ( 'Table'[Previous status] ) ), 0,
    MAX ( 'Table'[Previous status] ) > MAX ( 'Table'[status] ), 1,
    MAX ( 'Table'[Previous status] ) = MAX ( 'Table'[status] ), 2,
    MAX ( 'Table'[Previous status] ) < MAX ( 'Table'[status] ), 3
)

Then if you put the previous column in a table viaual, set the conditional formatting and select icons

vxinruzhumsft_1-1703490129497.png

 

and then put the measure to it.

vxinruzhumsft_2-1703490200202.png

 

Output

vxinruzhumsft_3-1703490221596.png

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

View solution in original post

4 REPLIES 4
CoreyP
Solution Sage
Solution Sage

Syndicated - Outbound

Thanks for providing some example data, but I'm still uncertain what you're hoping to accomplish. Can you provide some more specific details on what you're wanting to achieve?

Fowmy
Super User
Super User

Syndicated - Outbound

@K_Stevs1 

Sorry, your question isn't clear, could you provde the expected result as well with few examples

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Syndicated - Outbound

Sorry, forgot to add it.

 

I would like to add two columns that show

 

A = Top status and C = bottom status,  Changes = up arrow, down arrow or - (for the same)

extract         | Ref Number | [Current] status  | Previous status  | Change

01/03/2023 |  12                | A                        | -                         | - 

01/03/2023 |  132              | C                        | -                         | -

01/04/2023 |  12                | A                        | A                        | -   

01/04/2023 |  132              | C                        | C                        | -

01/05/2023 |  12                | B                        | A                        | ⬇️

01/05/2023 |  132              | C                        | C                        | -

01/06/2023 |  12                | B                        | B                        | -

01/06/2023 |  132              | C                        | C                       | -

01/06/2023 |  12                | A                        | B                       | ⬆️

01/06/2023 |  132              | C                        | C                       | -

 

thanks

Syndicated - Outbound

Hi @K_Stevs1 

1.If you want to implement it in power query, you can put the following code to advanced editor

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMtQ31jcyMDJW0lEyNAISjkqxOqiixiBhZ6iwCVbFJtgVm6IodsIQRVFshlWxGTGKHXEqjgUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [extract = _t, #"Ref Number" = _t, status = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"extract", type date}, {"Ref Number", Int64.Type}, {"status", type text}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Ref Number"}, {{"Data", each Table.AddIndexColumn(_,"Index",1,1)
, type table }}),
    #"Expanded Data" = Table.ExpandTableColumn(#"Grouped Rows", "Data", {"extract", "status", "Index"}, {"extract", "status", "Index"}),
    #"Added Custom" = Table.AddColumn(#"Expanded Data", "Previous status", each List.Min(Table.SelectRows(#"Expanded Data",(x)=>x[Ref Number]=[Ref Number] and x[Index]=[Index]-1)[status])),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom", each if [Previous status]=null then null else if [Previous status]=[status] then "←→" else if [Previous status]<[status] then "⬇" else if [Previous status]>[status] then "⬆" else null),
    #"Renamed Columns" = Table.RenameColumns(#"Added Custom1",{{"Custom", "Change"}})
in
    #"Renamed Columns"

Output

vxinruzhumsft_0-1703488750208.png

2.After create the previous column ,It is better to use measure to format the previous column instead of create the change column , you can refer to the following measure.

Format =
SWITCH (
    TRUE (),
    ISBLANK ( MAX ( 'Table'[Previous status] ) ), 0,
    MAX ( 'Table'[Previous status] ) > MAX ( 'Table'[status] ), 1,
    MAX ( 'Table'[Previous status] ) = MAX ( 'Table'[status] ), 2,
    MAX ( 'Table'[Previous status] ) < MAX ( 'Table'[status] ), 3
)

Then if you put the previous column in a table viaual, set the conditional formatting and select icons

vxinruzhumsft_1-1703490129497.png

 

and then put the measure to it.

vxinruzhumsft_2-1703490200202.png

 

Output

vxinruzhumsft_3-1703490221596.png

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)