I have excel with columns:
name | col1 | col2 | col3 | col4 | col5
And I have dict:
[
{
"name": "Bob",
"col1": "P",
"col3": "X"
},
{
"name": "Alice",
"col2": "P",
"col4": "P"
}
]
How to add rows to excel to columns based on column names from dict?
It would be great if we could add cell values based on dictionary names.