Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.04 KB

File metadata and controls

38 lines (33 loc) · 1.04 KB

Fill - Fill empty fields in selected columns of a CSV

sample file
┌─────┬─────────┐
│ idx │ name    │
├─────┼─────────┤
│  1  │         │
│  2  │ jerry   │
│  3  |         |
└─────┴─────────┘

1. fill

Set criteria (Select column: name, fill mode: fill, fill value: jerry)

┌─────┬─────────┐
│ idx │ name    │
├─────┼─────────┤
│  1  │ jerry   │
│  2  │ jerry   │
│  3  | jerry   |
└─────┴─────────┘

2. f-fill

Set criteria (Select column: name, fill mode: f-fill)

┌─────┬─────────┐
│ idx │ name    │
├─────┼─────────┤
│  1  │         │
│  2  │ jerry   │
│  3  | jerry   |
└─────┴─────────┘