I assume you’re trying to save the extracted value in the corresponding column: you can’t call the datatable column directly in the output.
Instead:
Save the value in a new variable, let’s say FName.
Then using assign activity:
YourDatatable.Rows(RoxIndex)("columnName") = FName
Let me know if this is what you’re trying to achieve