Hi,
BO Data Services Version: 4.1 SP2
I have (.CSV) file as source. It has integer values for some combinations and it doesn't have any value for few combinations. i.e. some combination don't exist in the file. I want to replace the null values into some value or next row's value + 10.
How can I achieve this? Any help is much appreciated.
The data in the file looks like the below:
Store ID | Type | Name | Stock |
---|---|---|---|
101 | Fruits | Orange | 2500 |
101 | Vegetable | Carrot | 2000 |
102 | Fruits | Grapes | 4000 |
102 | Fruits | Orange | 2000 |
102 | Vegetable | Carrot | 3000 |
Expected result: (Formatted in Bold Italic)
Store ID | Type | Name | Stock |
---|---|---|---|
101 | Fruits | Grapes | 2510 |
101 | Fruits | Orange | 2500 |
101 | Vegetable | Carrot | 2000 |
102 | Fruits | Grapes | 4000 |
102 | Fruits | Orange | 2000 |
102 | Vegetable | Carrot | 3000 |
Thanks,
Jeni