Forum Discussion
Anonymous
2 years agoNot applicable
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...
- 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
macolmedo10
2 years agoFrequent Visitor
Hi, i have similar problem may you please help me with this?