Hi, is it possible to create meta column based on the condition of other columns?
e.g:
+-----------------+
| Money. |
+-----------------+
| 200 |
| 3000 |
| 50 |
| 250 |
+-----------------+
To be:
+-----------------+-----------------+
| Money. | Category |
+-----------------+-----------------+
| 200 | 100-1000 |
| 3000 | Above 1000 |
| 50 | Below 100 |
| 250 | 100-1000 |
+-----------------+-----------------+