Hi Experts
I have a JSON array build like this:
{
"ExcelColumns": [
{
"ExcelColumnName": "EmpId",
"MappedColumnName": "Employee ID"
},
{
"ExcelColumnName": "FName",
"MappedColumnName": "First Name"
},
{
"ExcelColumnName": "LName",
"MappedColumnName": "Last Name"
}
]
}
I need to lookup a value in ExcelColumnName (e.g. Fname) and return the value in MappedColumnName (First Name).
How can this be done?