I have a column that is either null or has a value.
What I want is for 'm' to scan the entire column and replace null values with the preceding value.
My Code is this:
= Table.ReplaceValue(#"Added Custom3",each
[MyIndex],each if [MyIndex] = null then
(RawData1[MyIndex]{[Index]-1}) else [MyIndex],Replacer.ReplaceValue,{"MyIndex"} )
But it's not updating, and I don't know why. I'm assuming 'm' updates rows sequentially.
Solved! Go to Solution.
In the formula bar, type:
= Table.FillDown(#"Added Custom3", {"MyIndex"})
--Nate
In the formula bar, type:
= Table.FillDown(#"Added Custom3", {"MyIndex"})
--Nate
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
102 | |
26 | |
17 | |
14 | |
11 |
User | Count |
---|---|
104 | |
32 | |
27 | |
16 | |
15 |