I am looking to do the following
1. Take in a JSON file
2. Show the user a column in EXCEL filled with the values of a specific field
3. Have the column next to it be what the field will be changed to
4. Edit the JSON file with the new renamed values
1. Sample JSON
[
{
color: "red",
value: "#f00"
},
{
color: "green",
value: "#0f0"
},
{
color: "blue",
value: "#00f"
}
]
2. In EXCEL I would like Column A and B to have the following
3. Resulting edited JSON
[
{
color: "orange",
value: "#f00"
},
{
color: "purple",
value: "#0f0"
},
{
color: "white",
value: "#00f"
}
]
I simply need to do a bunch of replaces for a specific field
Anyway to accomplish this? VBA or no VBA does not matter.
Thanks
1. Take in a JSON file
2. Show the user a column in EXCEL filled with the values of a specific field
3. Have the column next to it be what the field will be changed to
4. Edit the JSON file with the new renamed values
1. Sample JSON
[
{
color: "red",
value: "#f00"
},
{
color: "green",
value: "#0f0"
},
{
color: "blue",
value: "#00f"
}
]
2. In EXCEL I would like Column A and B to have the following
A | B |
Current Value For Color | Desired Value For Color |
red | orange |
green | purple |
blue | white |
3. Resulting edited JSON
[
{
color: "orange",
value: "#f00"
},
{
color: "purple",
value: "#0f0"
},
{
color: "white",
value: "#00f"
}
]
I simply need to do a bunch of replaces for a specific field
Anyway to accomplish this? VBA or no VBA does not matter.
Thanks