So you need to modify this slightly, to get the value from a dropdown you need to use the Selected property:
Patch(
Data Source,
ThisItem, {
// use Dropdown.Selected.FieldName to get the selected item
// In a list of single values use the 'Value' field name
'Final Conclusion': 'final conclusion dropdown'.Selected.Value
}
)
If you are patching to a choice column, you'll need to do as I said before and change this into a single value record:
Patch(
Data Source,
ThisItem, {
// use Dropdown.Selected.FieldName to get the selected item
// In a list of single values use the 'Value' field name
// Use a single value record to patch a choice column
'Final Conclusion': { Value: 'final conclusion dropdown'.Selected.Value}
}
)
Hopefully that'll work for you one way or another.