Hello,
I am creating a Sharepoint List with lookup columns from scratch. Is there a way to remove the *required* status from the "Title" column that is created by default?
Also, how do I add an additional field from a look up column? So far I am able to create the lookup column with this code:
{
'parameters': {
'__metadata': {
'type': 'SP.FieldCreationInformation'},
'FieldTypeKind': 7,
'Title': ' New Column Name',
'LookupListId': '@{body('Parse_JSON_(ListName)')?['d']?['Id']}',
'LookupFieldName': 'Column Name I want to Look up'
}
}
How can I add a related column with the look up column?
Regards,