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
vincentakatoh
Helper IV
Helper IV

Power Query Conditional columns

Hi, 

Trying to figure out the M code equivalent to add column,"final test result", in power query, 

 

- In column "s/n", look for equivalent s/n

- In column "station", look for equivalent station, 

- In column "test count", look for test count, 

 

output

- if "test count" is not highest, output =null

- if "test count" is higest, output= test result. 

 

Below is a sample data (actual data >1m rows)

2017-06-15 00_13_29-Book1 - Excel.png

 

1 ACCEPTED SOLUTION

You can use Group By:

 

Group By 3.png

 

let
    Source = Table1,
    #"Grouped Rows" = Table.Group(Source, {"Srudent", "subject"}, {{"LastAttempt", each List.Max([Attempts]), type number}, {"AllData", each _, type table}}),
    #"Expanded AllData" = Table.ExpandTableColumn(#"Grouped Rows", "AllData", {"Attempts", "test result"}, {"Attempts", "test result"}),
    #"Added Custom" = Table.AddColumn(#"Expanded AllData", "Final Test Result", each if [Attempts] = [LastAttempt] then [test result] else null),
    #"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"LastAttempt"})
in
    #"Removed Columns"
Specializing in Power Query Formula Language (M)

View solution in original post

3 REPLIES 3
EvertonPessoa
Helper I
Helper I

Hi @vincentakatoh,

 

I did not understand the comparison value, it follows Power M:

 

Table.AddColumn(last Steps , "Name Column", each if [Test Count] >  "?" then [test result] else "null")

Hi @EvertonPessoa

Thanks. Will try another example as below:

 

I can get the "First test results quickly, by using below

"First Test Result", each if [Attempts] = 1 then [test result] else null 

 

Nonetheless, struggling to add column "Final test result"

The intend is to get the final (last attempt) test result for each "student" and "subject". There is no limit on number of attempts for each subject. 

 

2017-06-15 08_37_10-.png

 

 

 

You can use Group By:

 

Group By 3.png

 

let
    Source = Table1,
    #"Grouped Rows" = Table.Group(Source, {"Srudent", "subject"}, {{"LastAttempt", each List.Max([Attempts]), type number}, {"AllData", each _, type table}}),
    #"Expanded AllData" = Table.ExpandTableColumn(#"Grouped Rows", "AllData", {"Attempts", "test result"}, {"Attempts", "test result"}),
    #"Added Custom" = Table.AddColumn(#"Expanded AllData", "Final Test Result", each if [Attempts] = [LastAttempt] then [test result] else null),
    #"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"LastAttempt"})
in
    #"Removed Columns"
Specializing in Power Query Formula Language (M)

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.