Hello,
Is there a handy tool to convert the "NULL" text values from input source into actual NULL values?
I would like to convert from this:
| Date | Name | Value |
| NULL | XYZ | NULL |
| 2017-12-01 | AAA | 4312 |
| 2017-12-02 | BBB | 2412 |
| 2017-12-03 | NULL | NULL |
| 2017-12-04 | AAA | 4341 |
| 2017-12-05 | BBB | 5433 |
into this:
| Date | Name | Value |
| [Null] | XYZ | [Null] |
| 2017-12-01 | AAA | 4312 |
| 2017-12-02 | BBB | 2412 |
| 2017-12-03 | [Null] | [Null] |
| 2017-12-04 | AAA | 4341 |
| 2017-12-05 | BBB | 5433 |
Thanks,
Sabrina