@tom_riha I can use the filter action and view any table on any sheet, but even on single table workbooks I cannot "add a row into a table" using the dynamically called file. When I view the action for "add a row to into a table" I am not seeing the items (column names) that appear in my statically called flow.
Peeking the code shows the following:
STATIC - working
{
"inputs": {
"host": {
"connectionName": "shared_excelonlinebusiness",
"operationId": "AddRowV2",
"apiId": "/providers/Microsoft.PowerApps/apis/shared_excelonlinebusiness"
},
"parameters": {
"source": "groups/e25dd93c-a1fb-45c2-a037-073c1fd38ca4",
"drive": "b!XK0ayRFAlkePKk6Xna6UeIbDId1HNqtCqd8e6j5jZ0EOkKuFLisyQpDP9tERrc_L",
"file": "01KXKWXYGZF25CXYKVZ5EYYUHQYNVG4WUX",
"table": "TableName",
"item/Source": "@triggerOutputs()?['body/from']",
"item/iso8601_receipt_date": "@triggerOutputs()?['body/receivedDateTime']",
"item/conversation_id": "@triggerOutputs()?['body/conversationId']"
},
"authentication": "@parameters('$authentication')"
},
"metadata": {
"01KXKWXYHUTETN33YQQJGY7LDL435ZVTIB": "/General/Weekly Reports/Email Response Report (Automation)/current_week_automated_email_response_report.xlsx",
"tableId": "TableName",
"01KXKWXYGZF25CXYKVZ5EYYUHQYNVG4WUX": "/General/Weekly Reports/Email Response Report (Automation)/current_week_automated_email_response_report.xlsx"
}
}
DYNAMIC - Not working
{
"inputs": {
"host": {
"connectionName": "shared_excelonlinebusiness",
"operationId": "AddRowV2",
"apiId": "/providers/Microsoft.PowerApps/apis/shared_excelonlinebusiness"
},
"parameters": {
"source": "groups/e25dd93c-a1fb-45c2-a037-073c1fd38ca4",
"drive": "b!XK0ayRFAlkePKk6Xna6UeIbDId1HNqtCqd8e6j5jZ0EOkKuFLisyQpDP9tERrc_L",
"file": "@outputs('Get_file_properties')?['body/{Identifier}']",
"table": "TableName",
"item": 0
},
"authentication": "@parameters('$authentication')"
}
}