Forum Discussion

kylee_anne's avatar
kylee_anne
Helper II
2 years ago
Solved

Fill Down Problem

My data is imperfect and I have a column containining area and discipline values.  So I can keep both I thought if I copied the column, replaced discipline with blank or null, then filled down I coul...
  • slorin's avatar
    2 years ago

    Hi,

    Add a new column

    if Text.StartsWith([WBS], "WBS") then [WBS] else null

     or

    if [Level]<3 then [WBS] else null

     then Fill Down

     

    Stéphane