Forum Discussion
PaulTHR
4 years agoFrequent Visitor
To obtain first value (or non null) in a data row - reading left to right
Hi - I need to get the first non null value from a given row (reading left to right) in a table that can be used further in a calculation. I can find info on first non null in a column but cannot see how to do in a row - example below - any suggestions?
01/07/2021
| 01/08/2021
| 01/09/2021
| 01/10/2021
| 01/11/2021
| FIRST IN ROW VALUE |
| 250 | 300 | 250 | |||
| 150 | 200 | 250 | 300 | 150 | |
| 100 | 150 | 200 | 250 | 300 | 100 |
| 300 | 300 |
Use below formula
= List.RemoveNulls(Record.ToList(_)){0}