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
joshua1990
Post Prodigy
Post Prodigy

Change blank by earliest text value per week

Hi all!

I have an archive with the weekly extract of our sales data in a table like this:

Archival Year-Week Order Year-Week Value
2023-01 1 2023-01 5
2023-01 2 null 6

 

As you can see, it happens the is a "null" in the Year-Week column.

I would like to change the null to the earliest Year-Week, that is available within the same Archival Year-Week value.

 

How would you do that within PQ if the table has rows more than 50MM?

 

1 ACCEPTED SOLUTION
v-cgao-msft
Community Support
Community Support

Hi @joshua1990 ,

Hope it helps.

let
  Source = Table.FromRows(
    Json.Document(
      Binary.Decompress(
        Binary.FromText("i45WMjIwMtY1MFTSUQJhBM9UKVYHWdYIiPNKc3KAlJlSbCwA", BinaryEncoding.Base64), 
        Compression.Deflate
      )
    ), 
    let
      _t = ((type nullable text) meta [Serialized.Text = true])
    in
      type table [#"Archival Year-Week" = _t, Order = _t, #"Year-Week" = _t, Value = _t]
  ), 
  #"Changed Type" = Table.TransformColumnTypes(
    Source, 
    {
      {"Archival Year-Week", type date}, 
      {"Order", Int64.Type}, 
      {"Year-Week", type date}, 
      {"Value", Int64.Type}
    }
  ), 
  Custom1 = Table.TransformColumns(
    #"Changed Type", 
    {
      "Year-Week", 
      each 
        if _ <> null then
          _
        else
          Table.Group(
            #"Changed Type", 
            {"Archival Year-Week"}, 
            {{"Min", each List.Min([#"Archival Year-Week"])}}
          )[Min]{0}
    }
  )
in
  Custom1

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

2 REPLIES 2
v-cgao-msft
Community Support
Community Support

Hi @joshua1990 ,

Hope it helps.

let
  Source = Table.FromRows(
    Json.Document(
      Binary.Decompress(
        Binary.FromText("i45WMjIwMtY1MFTSUQJhBM9UKVYHWdYIiPNKc3KAlJlSbCwA", BinaryEncoding.Base64), 
        Compression.Deflate
      )
    ), 
    let
      _t = ((type nullable text) meta [Serialized.Text = true])
    in
      type table [#"Archival Year-Week" = _t, Order = _t, #"Year-Week" = _t, Value = _t]
  ), 
  #"Changed Type" = Table.TransformColumnTypes(
    Source, 
    {
      {"Archival Year-Week", type date}, 
      {"Order", Int64.Type}, 
      {"Year-Week", type date}, 
      {"Value", Int64.Type}
    }
  ), 
  Custom1 = Table.TransformColumns(
    #"Changed Type", 
    {
      "Year-Week", 
      each 
        if _ <> null then
          _
        else
          Table.Group(
            #"Changed Type", 
            {"Archival Year-Week"}, 
            {{"Min", each List.Min([#"Archival Year-Week"])}}
          )[Min]{0}
    }
  )
in
  Custom1

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

ronrsnfld
Super User
Super User

If your actual data is similar to what you show, simply select that column and Fill Down.

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.

Top Solution Authors
Top Kudoed Authors