Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

How to fill down values in one column based upon distinct values in another?

Hello.   I have a dataset which has gaps in a certain column ('Updates') I would like to fill down according to the distinct values in another column ('Server'): The values in 'Update' are a...
  • slorin's avatar
    2 years ago

    Hi

     

    = Table.Combine(
    Table.Group(
    Your_Source,
    {"Server"},
    {{"Data", each Table.FillDown(_,{"Updates"}), type table [Server=number, Events=number, Updates=nullable number]}}
    )[Data]
    )

    Stéphane