Forum Discussion
Frnztt
2 years agoNew Member
Repeat value from previous line (Language M)
Good afternoon everyone, I need help bringing information from my previous line, I will describe here what I am doing. Based on the table below: From this table I need to add another colum...
- 2 years ago
Do you mean you want to get the name for each section on the same row as the date?
--
I think the code provided can be simplified:
if Text.Contains([Data], "/") then null else [Data])then do a Fill.Down on the column
HotChilli
2 years agoCommunity Champion
Do you mean you want to get the name for each section on the same row as the date?
--
I think the code provided can be simplified:
if Text.Contains([Data], "/") then null else [Data])
then do a Fill.Down on the column
- Frnztt2 years agoNew Member
What I need is that when it doesn't identify the "/" of the date, it retrieves the information from the previous line that I'm filling in.
Example, if you don't find "/" take the name information and write it in "Recurso", if you don't find "/" return the name placed on the previous line of "Recurso" - Frnztt2 years agoNew Member
You're right, I didn't understand at first, setting everything to null I can do the filldown later.
Thank you very much.