Hi, Can someone please help with the below requirement.
Need to perform union operation in 'cost' column, however need to add a title in between the numeric values as - "New cost". Currently when I tried this by adding "New Cost" as text input, the comma (,) disappears because the numeric changes to string value. How to retain the comma?
| Input | | Desired Output |
| Name | Cost | | Name | Cost |
| A | 2,233 | | A | 2,233 |
| B | 4,345 | | B | 4,345 |
| C | 32,234 | | C | 32,234 |
| D | 20,000 | | D | 20,000 |
| | | | | |
| | | | | New Cost |
| | 1,878 | | | 1,878 |
| | 2,233 | | | 2,233 |
| | 2,211 | | | 2,211 |
| | | | | |
| | | | | |