
Announcements
Can someone help me with this?
When a new excel file is created in SharePoint, i want to get text content (specific cell) of the excel file and rename the file in SharePoint.
Is this possible with Power Automate? I am grateful for help.
Hi @Anonymous ,
I assuming you want to rename the file based on the value in cell A3, maybe you could try the following.
1. Here is my excel file.
2. Here is my Flow.
outputs('List_rows_present_in_a_table')?['body/value'][index]?['ColumnName']_api/web/lists/GetByTitle('Documents')/items(@{outputs('Get_file_metadata')?['body/ItemId']})/validateUpdateListItem{
"formValues":[
{
"FieldName": "FileLeafRef",
"FieldValue": "@{outputs('Compose')}.xlsx "
}
]
}
Result Screenshot:
In addition, here is a link for your reference.
Best Regards,
Charlie Choi