cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
GavinF69
Helper II
Helper II

Power Automate Bug: Flow fails with incorrect date format ISO 8601 error

Hi Community, this seems like a bug (IMHO) in flow logic/code...

 

I have a flow that creates a word document in SharePoint, using a date format as part of the saved file name (to avoid overwriting a file with same name) see below:

GavinF69_0-1669574694657.png

This works just fine when the name referred to above by 'Insured Name' does not contain any numbers, but as soon as it does then flow fails with incorrect use of ISO 8601 FormatDateTime error. I spent days trying to figure this out even removing all reference to date or trying to timestamp the document with that ReportDate expression. The failure is easily repeatable by putting any numbers in the Insured Name, my example was a party called "Company 882". Which flow interprets as being

"Company GavinF69_1-1669575165911.png" when the document is created and sees the "882" part of the company name as being part of the format date time expression, here is the error message...

GavinF69_2-1669575543822.png

and the update file properties error

GavinF69_3-1669575742585.png

So the file gets created in SharePoint, but obviously all the dynamic content created by forms does not pass through to the document due to this error. The flow will complete successfully if I remove the "882" part of the company name, but that just means I have created a workaround and not fixed the problem.  Anyone got ideas on how to get around this, one would think using a date/time stamp on a file name should not be an issue...

 

2 ACCEPTED SOLUTIONS

Accepted Solutions

"# ###.00"  will work as a format string in Text() the same way it works in Excel.  It will show digits for each of the # signs unless the digit is 0, then it will display a blank.  In your example you would want

"### ###.00" 



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

View solution in original post

@Pstork1 , thanks so much for pointing me in the right direction, here is what I eventually went with and the values are formatted exactly as I wanted:

 

GavinF69_0-1669656340315.pngGavinF69_1-1669656388913.pngGavinF69_2-1669656480215.png

I still see a strange error on the Update File Properties section, even thought the file is created and the SharePoint columns are populated.

GavinF69_3-1669656758080.png

I sense this latest error is why the actual quick parts in the word document aren't updated like I explained in this post.... Re: HEEEEEELLLLLLP PLEASE - Opening created word f... - Power Platform Community (microsoft.com)

View solution in original post

10 REPLIES 10
Pstork1
Multi Super User
Multi Super User

Can you show a screenshot of how the update file properties of the created file is configured.  I suspect you are doing something to try to get the file name programmatically and that is why the extra numbers are an issue.  What does the ParseDateTime function look like?



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Hi Pstork1,

 

Hopefully this is what you are looking for:

Define FormatDateTime through compose action expression and use it as part of naming the file to create (I put the various expressions into the note on each action):

GavinF69_0-1669581359544.png

Output for these two steps shows the same as when the flow completes successfully (funny enough):

GavinF69_4-1669582013143.png

Run2 (Failed) output:

GavinF69_3-1669581948442.png

Run 1 (successful) output:

GavinF69_5-1669582115195.png

Raw inputs of above successful run shown here:

GavinF69_6-1669582410277.png

 

Raw outputs of above successful run shown here:

{
    "statusCode": 200,
    "headers": {
        "Transfer-Encoding": "chunked",
        "Vary": "Origin,Accept-Encoding",
        "X-NetworkStatistics": "0,525568,0,0,554,0,23726",
        "X-SharePointHealthScore": "2",
        "X-MS-SPConnector": "1",
        "Range": "bytes=0-343749",
        "X-SP-SERVERSTATE": "ReadOnly=0",
        "DATASERVICEVERSION": "3.0",
        "SPClientServiceRequestDuration": "1658",
        "X-DataBoundary": "None",
        "X-1DSCollectorUrl": "https://eu-mobile.events.data.microsoft.com/OneCollector/1.0/",
        "X-AriaCollectorURL": "https://eu-mobile.events.data.microsoft.com/Collector/3.0",
        "SPRequestGuid": "cda373b6-31ed-4e73-bf1f-a6121b55028a",
        "request-id": "cda373b6-31ed-4e73-bf1f-a6121b55028a",
        "MS-CV": "tnOjze0xc06/H6YSG1UCig.0",
        "Strict-Transport-Security": "max-age=31536000",
        "X-FRAME-OPTIONS": "SAMEORIGIN",
        "Content-Security-Policy": "frame-ancestors 'self' teams.microsoft.com *.teams.microsoft.com *.skype.com *.teams.microsoft.us local.teams.office.com *.powerapps.com *.yammer.com *.officeapps.live.com *.office.com *.stream.azure-test.net *.microsoftstream.com *.dynamics.com *.microsoft.com securebroker.sharepointonline.com;",
        "MicrosoftSharePointTeamServices": "16.0.0.23102",
        "X-Content-Type-Options": "nosniff",
        "X-MS-InvokeApp": "1; RequireReadOnly",
        "Timing-Allow-Origin": "*",
        "x-ms-apihub-cached-response": "true",
        "x-ms-apihub-obo": "false",
        "Cache-Control": "max-age=0, private",
        "Date": "Sun, 27 Nov 2022 16:21:34 GMT",
        "P3P": "CP=\"ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI\"",
        "X-AspNet-Version": "4.0.30319",
        "X-Powered-By": "ASP.NET",
        "Content-Type": "application/json; charset=utf-8",
        "Expires": "Sat, 12 Nov 2022 16:21:32 GMT",
        "Last-Modified": "Sun, 27 Nov 2022 16:21:32 GMT",
        "Content-Length": "621"
    },
    "body": {
        "ItemId": 2,
        "Id": "%252fCommercial%2bReports%252fChristow%2bP-2022-11-27%2b16_21_24.docx",
        "Name": "Christow P-2022-11-27 16_21_24.docx",
        "DisplayName": "Christow P-2022-11-27 16_21_24.docx",
        "Path": "/Commercial Reports/Christow P-2022-11-27 16_21_24.docx",
        "LastModified": "2022-11-27T16:21:35Z",
        "Size": 343750,
        "MediaType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
        "IsFolder": false,
        "ETag": "\"{BBF2179D-F795-4D8F-B13F-5871F69720E8},2\"",
        "FileLocator": "dataset=aHR0cHM6Ly9pcnNzYS5zaGFyZXBvaW50LmNvbQ==,id=JTI1MmZDb21tZXJjaWFsJTJiUmVwb3J0cyUyNTJmQ2hyaXN0b3clMmJQLTIwMjItMTEtMjclMmIxNl8yMV8yNC5kb2N4"

 

Then the Update file properties is the following (nowhere in the Update file properties do I do any date formatting, I merely pass the value of the "Assessment Date" forms field directly), the only date parsing is for "ReportDate" above and it is only used in the naming of the file (trying to keep file names unique in SharePoint):

 

GavinF69_1-1669581555241.png

Here is a screenshot of the same flow with a different client that worked exactly as expected:

GavinF69_7-1669583692213.png

and below the redacted raw input:

{
    "host": {
        "connectionReferenceName": "shared_sharepointonline",
        "operationId": "PatchFileItem"
    },
    "parameters": {
        "dataset": "https://xxxxxx.sharepoint.com",
        "table": "025ff210-952f-49f9-8a07-5361a3e2a64d",
        "id": 2,
        "item/Title": "xxx xxxx Report",
        "item/DET_x0020_Accompanied_x0020_by": "xxxxxx",
        "item/DET_x0020_Assessment_x0020_Date": "11 November 2022",
        "item/DET_x0020_Broker_x0020_Contact": "xxx xxx xx",
        "item/DET_x0020_Current_x0020_Insured_x0020_Covers": "123 456 789.00",
        "item/DET_x0020_Insured_x0020_Name": "xxxxx",
        "item/DET_x0020_Metropolitan_x0020_Municipality": "xxxx",
        "item/DET_x0020_Permission_x0020_Granted": "xxxx",
        "item/DET_x0020_Physical_x0020_Address1": "xxxxx, xxxx xxx",
        "item/DET_x0020_Policy_x0020_Number": "xxx-xxxx",
        "item/DET_x0020_Property_x0020_name": "xxxxx",
        "item/DET_x0020_Province": "Gauteng",
        "item/DET_x0020_Requestor": "xxxxx",
        "item/DET_x0020_Surveyor": "xxxxx (xxxxxx)",
        "item/DET_x0020_Town_x0020_or_x0020_Township": "xxxx",
        "item/EML_x0020_Business_x0020_interruption": "xxxxx",
        "item/EML_x0020_Crime_x0020_classification": "xxxx",
        "item/EML_x0020_Fire_x0020_calculation_x0020__x0025__x0020_conservative": "000",
        "item/EML_x0020_Fire_x0020_calculation_x0020__x0025__x0020_worst_x0020_case": "000",
        "item/EML_x0020_Fire_x0020_calculation_x0020_worst_x0020_case": " xxxxx.",
        "item/EML_x0020_Fire_x0020_classification": "xxx xxx",
        "item/OB_x0020_Establishment_x0020_zone_x0020_type": "xxxx xxx",
        "item/OB_x0020_Audible_x0020_fire_x0020_alarm": " xxx",
        "item/OB_x0020_Buildings_x0020_summary": "xxxxxxxxx.",
        "item/OB_x0020_Buildings_x0020_description": "xxxxx",
        "item/OB_x0020_Establishment_x0020_process_x0020_conducted": "xxx",
        "item/OB_x0020_Ceiling_x0020_Insulation": "xxx",
        "item/OB_x0020_Ceiling_x0020_types": "xxx ",
        "item/OB_x0020_Ceiling_x0020_options": "xxx",
        "item/OB_x0020_Communal_x0020_clubhouse": "xxx.",
        "item/OB_x0020_Confidential_x0020_underwriting_x0020_notes": "xxxx",
        "item/OB_x0020_Construction_x0020_type": "brick and mortar xxxx",
        "item/OB_x0020_Cooking_x0020_extraction_x0020_systems_x0020_or_x0020_ducting": "xxx xxx",
        "item/OB_x0020_Cooking_x0020_extraction_x0020_systems_x0020_or_x0020_ducting_x0020_service_x0020_contracts": "xxxx",
        "item/OB_x0020_CSIR_x0020_lightning_x0020_risk_x0020_determination": "Low (xxx)",
        "item/OB_Description_of_buildings": "xxxx",
        "item/OB_x0020_Door_x0020_types": "The xxx",
        "item/OB_x0020_Door_x0020_options": "xxx",
        "item/OB_x0020_Drainage_x0020_adequacy": "is xxx ",
        "item/OB_x0020_Drainage_x0020_direction": "xxx",
        "item/OB_x0020_Drainage_x0020_drainpipes": "xxx",
        "item/OB_x0020_Drainage_x0020_impact": "xxx",
        "item/OB_x0020_Driveways_x0020_areas": "xxx",
        "item/OB_x0020_Electrical_x0020_Lighting": "xxxx",
        "item/OB_x0020_Electrical_x0020_reticulation_x0020_backup_x0020_generator_x0020_or_x0020_UPS_x0020_supply": "xxx",
        "item/OB_x0020_Electrical_x0020_reticulation_x0020_solar_x0020_supply_x0020_routing": "xxx",
        "item/OB_x0020_Electrical_x0020_reticulation_x0020_wiring_x0020_state": "xxx",
        "item/OB_x0020_Elevators_x0020_and_x0020_escalators_x0020_operational_x0020_state": "xxx",
        "item/OB_x0020_Emergency_x0020_escape_x0020_routes": "xxx.",
        "item/OB_x0020_Emergency_x0020_escape_x0020_routes_x0020_signage": "xxx.",
        "item/OB_x0020_Establishment_x0020_additional_x0020_common_x0020_property_x0020_structures": "xxx.",
        "item/OB_x0020_Establishment_x0020_ownership_x0020_type": "xxx",
        "item/OB_x0020_Establishment_x0020_structure_x0020_levels": "xxx",
        "item/OB_x0020_Establishment_x0020_structure_x0020_type": "xxx",
        "item/OB_x0020_Explosion_x0020_hazards": "xxx",
        "item/OB_x0020_Explosion_x0020_hazards_x0020_risk": "xxx",
        "item/OB_x0020_Fire_x0020_department_x0020_access": "xxx",
        "item/OB_x0020_Fire_x0020_department_x0020_distance_x0020__x0028_km_x0029_": "xx",
        "item/OB_x0020_Fire_x0020_department_x0020_name": "xxx",
        "item/OB_x0020_Fire_x0020_equipment_x0020_servicing": "xxx",
        "item/OB_x0020_Fire_x0020_extinguisher_x0020_requirements_x0020_": "xxx\nNo xxx xx",
        "item/OB_x0020_Fire_x0020_Extinguishers": "xxx",
        "item/OB_x0020_Fire_x0020_hose_x0020_reels": "xxx",
        "item/OB_x0020_Fire_x0020_hydrants_x0020_in_x0020_street": "xxx",
        "item/OB_x0020_Fire_x0020_hydrants_x0020_on_x0020_property": "xxx",
        "item/OB_x0020_Fire_x0020_sprinkler_x0020_systems": "xxxx",
        "item/OB_x0020_Fire_x0020_teams": "xxxx",
        "item/OB_x0020_Firewall_x0020_division": "xxxx",
        "item/OB_x0020_Flammable_x0020_substance_x0020_stores": "xxx",
        "item/OB_x0020_Flammable_x0020_substances_x0020_list": "xxxx",
        "item/OB_x0020_Flammable_x0020_substances": "xxxx",
        "item/OB_x0020_Flammable_x0020_substances_x0020_storage_x0020_certification": "xxxx",
        "item/OB_x0020_Flood_x0020_hazard_x0020_index": "xxxx.",
        "item/OB_x0020_Floor_x0020_types": "xxxx",
        "item/OB_x0020_Floor_x0020_materials": "xxx",
        "item/OB_x0020_Gas_x0020_installation": "xxxx",
        "item/OB_x0020_Gas_x0020_Storage": "xxxx",
        "item/OB_x0020_General_x0020_and_x0020_tenants_x0020_liability_x0020_": "xxxx",
        "item/OB_x0020_General_x0020_and_x0020_tenants_x0020_liability_x0020_items": "xxxx.",
        "item/OB_x0020_General_x0020_fire_x0020_protections_x0020_compliance": "xxx",
        "item/OB_x0020_Ground_x0020_slope": "xxxx",
        "item/OB_x0020_Ground_x0020_slope_x0020_retaining_x0020_walls": "xxxx.",
        "item/OB_x0020_Hazardous_x0020_chemical_x0020_substances_x0020_list": null,
        "item/OB_x0020_Hazardous_x0020_chemical_x0020_substances": "xxxx",
        "item/OB_x0020_Hot_x0020_works": "xxx",
        "item/OB_x0020_Housekeeping": "xxx",
        "item/OB_x0020_Lightning_x0020_conductors": "xxx.",
        "item/OB_x0020_Mining_x0020_activities": "xxxx",
        "item/OB_x0020_Number_x0020_of_x0020_elevators_x0020_or_x0020_escalators": "0",
        "item/OB_x0020_Number_x0020_of_x0020_floor_x0020_levels_x0020_or_x0020_floors_x0020_within_x0020_the_x0020_structure": "0",
        "item/OB_Number_of_guest_x002d_rooms_within_hotel_or_guest_house": "0",
        "item/OB_x0020_Number_x0020_of_x0020_structures_x0020_or_x0020_erected_x0020_buildings": "1",
        "item/OB_x0020_Open_x0020_water_x0020_source_x0020_or_x0020_water_x0020_bodies_x0020_distance_x0020__x0028_m_x0029_": "0",
        "item/OB_x0020_Open_x0020_water_x0020_source_x0020__x002d__x0020_water_x0020_bodies_x0020_": "xxx",
        "item/OB_x0020_Parking_x0020_basement": "xxx.",
        "item/OB_x0020_Parking_x0020_open_x0020_areas": "xxx",
        "item/OB_x0020_Perimeter_x0020_fencing_x0020_options": "xxx",
        "item/OB_x0020_Perimeter_x0020_fencing": "xxxx ",
        "item/OB_x0020_Business_x0020_type": "xxxx",
        "item/OB_x0020_Property_x0020_front": "xxx",
        "item/OB_x0020_Public_x0020_access_x0020_signage": "xxx.",
        "item/OB_x0020_Public_x0020_access_x0020_to_x0020_property": "xxx",
        "item/OB_x0020_Rising_x0020_water_x0020_level_x0020_proximity": "xxxx ",
        "item/OB_x0020_Rising_x0020_water_x0020_level_x0020_threat": "xxxx",
        "item/OB_x0020_Roof_x0020_materials": "xxx",
        "item/OB_x0020_Roof_x0020_type": "xxx roof",
        "item/OB_x0020_SAWS_x0020_lightning_x0020_strikes_x0020_per_x0020_annum": "xxx",
        "item/OB_x0020_Smoke_x0020_control_x0020_extraction_x0020_systems": "xxxx",
        "item/OB_x0020_Smoke_x0020_detection": "xxx.",
        "item/OB_x0020_Spray_x0020_painting": "xxxx",
        "item/OB_x0020_Subsidence_x0020_and_x0020_landslip": "xxxx",
        "item/OB_x0020_Open_x0020_areas_x0020_or_x0020_vacant_x0020_land_x0020_": "xxxx.",
        "item/OB_x0020_Open_x0020_areas_x0020_or_x0020_vacant_x0020_land_x0020_fire_x0020_threat": "xxxx",
        "item/OB_x0020_Swimming_x0020_pools_x0020_fishponds_x0020_or_x0020_water_x0020_features": "xxxx.",
        "item/OB_x0020_Thatch_x0020_condition": "",
        "item/OB_x0020_Thatch_x0020_fireplaces": "",
        "item/OB_x0020_Thatch_x0020_structure_x0020_average_x0020_size_x0020__x0028_m2_x0029_": "0",
        "item/OB_x0020_Thatch_x0020_structure_x0020_distance_x0020_from_x0020_main_x0020_structure_x0020__x0028_m_x0029_": "0",
        "item/OB_x0020_Thatch_x0020_structures": "xxxx",
        "item/OB_x0020_Truss_x0020_type": "xxxx",
        "item/OB_x0020_Twin_x0020_booster_x0020_connection": "xxx",
        "item/OB_x0020_Wall_x0020_types": "xxx",
        "item/OB_x0020_Wall_x0020_options": "xxx",
        "item/OB_x0020_Waste_x0020_management": "xxx",
        "item/OB_x0020_Water_x0020_damage": "xxx.",
        "item/OB_x0020_Water_x0020_reticulation": "xxx.",
        "item/OB_x0020_Water_x0020_supply": "xxxx.",
        "item/OB_x0020_Wendy_x0020_house_x0020_or_x0020_timber_x0020_shed_x0020_distance_x0020_from_x0020_main_x0020_structure_x0020__x0028_m_x0029_": "0",
        "item/OB_x0020_Wendy_x0020_house_x0020_or_x0020_timber_x0020_shed_x0020_end_x0020_of_x0020_sentence": "",
        "item/OB_x0020_Wendy_x0020_houses_x0020_or_x0020_timber_x0020_shed_x0020_structures": "xxxx.",
        "item/OB_x0020_Window_x0020_frame_x0020_type": "xxxx",
        "item/OB_x0020_Window_x0020_glass_x0020_type": "xxx",
        "item/REQ_x0020_Building_x0020_requirement_x0020_risk_x0020_assessment_x0020_rating": "xxxx",
        "item/REQ_x0020_Building_x0020_requirements_x0020_or_x0020_recommendations_x0020_": "xxxx",
        "item/REQ_x0020_Building_x0020_requirements_x0020_or_x0020_recommendations_x0020_list": null,
        "item/REQ_x0020_Electrical_x0020_reticulation": "xxxx",
        "item/REQ_x0020_Electrical_x0020_reticulation_x0020_list": null,
        "item/REQ_x0020_Fire_x0020_equipment_x0020_servicing": "xxx",
        "item/REQ_x0020_Fire_x0020_hose_x0020_reels": "xxxx",
        "item/REQ_x0020_Fire_x0020_hydrant": "xxx",
        "item/REQ_x0020_Fire_x0020_requirements_x0020_and_x0020_recommendations_x0020_": "xxxx",
        "item/REQ_x0020_Fire_x0020_requirements_x0020_risk_x0020_rating_x0020_": "xxx",
        "item/REQ_x0020_Fire_x0020_sprinkler_x0020_systems": "xxx",
        "item/REQ_x0020_Fire_x0020_teams": "xxx",
        "item/REQ_x0020_Gas_x0020_installation_x0020_and_x0020_Cooking_x0020_Extraction_x0020_Systems": "xxx",
        "item/REQ_x0020_Gas_x0020_Storage": "xxx",
        "item/REQ_x0020_Hazardous_x0020_chemical_x0020_or_x0020_flammable_x0020_substances_x0020_storage_x0020_": "xxx",
        "item/REQ_x0020_Hot_x0020_works": "xxxx",
        "item/REQ_x0020_Housekeeping": "xxx",
        "item/REQ_x0020_Liability_x0020_requirements": "xxxx.",
        "item/REQ_x0020_Smoke_x0020_control_x0020_extraction_x0020_systems": "xxx",
        "item/REQ_x0020_Smoke_x0020_detection_x0020_or_x0020_fire_x0020_alarm_x0020_": "xxx",
        "item/REQ_x0020_Spray_x0020_painting": "xxx.",
        "item/REQ_x0020_Spray_x0020_painting_x0020_tenant_x0020_name": "",
        "item/REQ_x0020_Twin_x0020_booster_x0020_connection": "xxx",
        "item/REQ_x0020_Waste_x0020_management": "xxx"
}
}

 output to Sharepoint:

GavinF69_8-1669583844627.png

Hope this helps...

I hope you got my reply as I don't see it here?

Didn't see a reply.  Please send again.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
GavinF69
Helper II
Helper II

Don't know what happened with first reply post but herewith an abridged one...

 

GavinF69_0-1669615817546.png

and below the code from update file properties

{
    "inputs": {
        "host": {
            "connectionName": "shared_sharepointonline",
            "operationId": "PatchFileItem",
            "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline"
        },
        "parameters": {
            "dataset": "https://xxxxx.sharepoint.com",
            "table": "025ff210-952f-49f9-8a07-5361a3e2a64d",
            "id": "@outputs('Create_new_file_based_off_the_template_file')?['body/ItemId']",
            "item/Title": "Assessment Report",
            "item/DET_x0020_Accompanied_x0020_by": "@outputs('Get_form_response_details')?['body/rddff6c459df34cf59d534107c45c14f3']",
            "item/DET_x0020_Assessment_x0020_Date": "@outputs('Get_form_response_details')?['body/r53c7723956a44d0a84170e7a7f4807d3']",
            "item/DET_x0020_Broker_x0020_Contact": "@outputs('Get_form_response_details')?['body/rc6bcaf3de1914dc694ea4ef7a1dc2153']",
            "item/DET_x0020_Current_x0020_Insured_x0020_Covers": "@concat(slice(variables('InsuredValue'), 0, 3), ' ', slice(variables('InsuredValue'), 3, -3), ' ', formatDateTime(parseDateTime(slice(variables('InsuredValue'), -3, -2), 'en-US', '%M'), '%M', 'en-US'), formatDateTime(parseDateTime(slice(variables('InsuredValue'), -2, -1), 'en-US', '%M'), '%M', 'en-US'), formatNumber(length(variables('InsuredValue')), '0.00'))",
            "item/DET_x0020_Insured_x0020_Name": "@outputs('Get_form_response_details')?['body/r256118b5a0e64a058d52c18c57260748']",
            "item/DET_x0020_Metropolitan_x0020_Municipality": "@{outputs('Get_form_response_details')?['body/rd07304f520d04410b1007e0d693e475f']}@{outputs('Get_form_response_details')?['body/rc66d9f4eb1e043daad0e990f0f50c4f3']}@{outputs('Get_form_response_details')?['body/r907d6d99b34e42ddadeef4f36cf0e5c6']}@{outputs('Get_form_response_details')?['body/r7d17f99743d84931969c5a4ef2e5daa4']}@{outputs('Get_form_response_details')?['body/rf741516e9a45434fa8aea1c8be9bde7f']}@{outputs('Get_form_response_details')?['body/r2b97ed1eb6084de582223c59d4d54a54']}@{outputs('Get_form_response_details')?['body/r82462833f1e84627bff5c7c20838cf3d']}@{outputs('Get_form_response_details')?['body/re09f8e0d40244dcea7348b5026c47633']}@{outputs('Get_form_response_details')?['body/r8e6c2af7a7c046978ccede5b29c1241b']}@{outputs('Get_form_response_details')?['body/r9d65030d10bf491cb56e2559451e5136']}@{outputs('Get_form_response_details')?['body/rd26ca28dcab54a2e89e98d17c8fe5f2b']}@{outputs('Get_form_response_details')?['body/r8b5572587de24c4e977d19aae94c37a6']}@{outputs('Get_form_response_details')?['body/rb8f8ff255e8a4f0c958a093b9fa15178']}@{outputs('Get_form_response_details')?['body/r5f28e3d2106d4fc480a1864554f7af99']}@{outputs('Get_form_response_details')?['body/r618d5738599e47eab18607820d521297']}@{outputs('Get_form_response_details')?['body/r2785ddee3e1b42c384b93edb1885350d']}@{outputs('Get_form_response_details')?['body/rb36d75bc48d3462ca059402229ffc51c']}@{outputs('Get_form_response_details')?['body/rc629ef440fb14721baf374828a964881']}@{outputs('Get_form_response_details')?['body/ra3bada602db8455b9313b9ca05d0e6c4']}@{outputs('Get_form_response_details')?['body/rae1d387f5a8c4a9e9d0d0ab77e55b060']}@{outputs('Get_form_response_details')?['body/ra83fefbf01a7430681dfe38d5679422d']}@{outputs('Get_form_response_details')?['body/rc0d75b87038640889826887872d115da']}@{outputs('Get_form_response_details')?['body/r56676a33e7c64ae680f4397b04c338f1']}@{outputs('Get_form_response_details')?['body/r56264d6f63a64a1da179a7f24fca7f68']}",
            "item/DET_x0020_Permission_x0020_Granted": "@outputs('Get_form_response_details')?['body/r4a09ce1c0c2c4c6996174471f0edc028']",
            "item/DET_x0020_Physical_x0020_Address1": "@outputs('Get_form_response_details')?['body/r74e73ad223774395bbed7a0b0c8b0c0b']",
            "item/DET_x0020_Policy_x0020_Number": "@outputs('Get_form_response_details')?['body/r3952aef565ec4438beef597cdc94cc16']",
            "item/DET_x0020_Property_x0020_name": "@outputs('Get_form_response_details')?['body/r01fc5fc0ad624adea3d7961b837b0d0b']",
            "item/DET_x0020_Province": "@outputs('Get_form_response_details')?['body/r0b4611e0480c4a619e90e39ac3cadcc3']",
            "item/DET_x0020_Requestor": "@outputs('Get_form_response_details')?['body/r9a05fc4eab854212a69d6589fee51313']",
            "item/DET_x0020_Surveyor": "@outputs('Get_form_response_details')?['body/ra4bbf40e5b5c4909aca9dd82613755f4']",
            "item/DET_x0020_Town_x0020_or_x0020_Township": "@{outputs('Get_form_response_details')?['body/rf6e8441c5c3a45d89a824f479773e9d2']}@{outputs('Get_form_response_details')?['body/r79567a356abd439a8b598d2a66b53ae3']}@{outputs('Get_form_response_details')?['body/rfc4998cfcc9948cc85d8e324b463b95a']}@{outputs('Get_form_response_details')?['body/rac7aa68ad59048799c07ee0f2a6c21cc']}@{outputs('Get_form_response_details')?['body/rdb47adf7765544cabe25a519491b8f33']}@{outputs('Get_form_response_details')?['body/r963709583e374d08bf19b46b8d11ed3d']}@{outputs('Get_form_response_details')?['body/r345f1b84546e476d8cabdf75d3baf4e4']}@{outputs('Get_form_response_details')?['body/r77e7e9093f214e02859373d10a6ccbac']}@{outputs('Get_form_response_details')?['body/r0aca3158949d4c23b88b506b54521b76']}@{outputs('Get_form_response_details')?['body/r71e997e2d050475a99cd0d5e4405e40b']}@{outputs('Get_form_response_details')?['body/r3336708d8f694002906865a50f5687be']}@{outputs('Get_form_response_details')?['body/r6ccbcd6a8e86458097169b3d664a7fe9']}@{outputs('Get_form_response_details')?['body/r6048f6bd71fb4f9caa5f2d8d895abb3a']}@{outputs('Get_form_response_details')?['body/r2bfbc8ec913b4c7782cdd0130b11e9dc']}@{outputs('Get_form_response_details')?['body/re60018cdf2f44e80babc27df98bf2fda']}@{outputs('Get_form_response_details')?['body/r57ddc1acd88d4fe1abbc10856b20b332']}@{outputs('Get_form_response_details')?['body/rc501d7ad4f08408fbd5fc9079a4785d1']}@{outputs('Get_form_response_details')?['body/re4fc61d16a3e441cafb18f64967c063d']}@{outputs('Get_form_response_details')?['body/r3516815e87d245dc889b6323fdd7d8b7']}@{outputs('Get_form_response_details')?['body/r16829155b1af4b90ae6797ba3a8d3591']}@{outputs('Get_form_response_details')?['body/r0b5b4f8f7032495eaaa4506219cc6ce9']}@{outputs('Get_form_response_details')?['body/r0a6194388fa54d038c113da2a4514661']}",
            "item/EML_x0020_Business_x0020_interruption": "@outputs('Get_form_response_details')?['body/rabca946e74a44f73b5ff279d6697337c']",
            "item/EML_x0020_Crime_x0020_classification": "@outputs('Get_form_response_details')?['body/rfeb2e90da5b44b8b95931123d2f001f7']",
            "item/EML_x0020_Fire_x0020_calculation_x0020__x0025__x0020_conservative": "@outputs('Get_form_response_details')?['body/rff918b455b8c4d009fb76b6cf7f62e28']",
            "item/EML_x0020_Fire_x0020_calculation_x0020__x0025__x0020_worst_x0020_case": "@outputs('Get_form_response_details')?['body/r6871e9be0f6742a29718643b3d78745a']",
            "item/EML_x0020_Fire_x0020_calculation_x0020_worst_x0020_case": "@outputs('Get_form_response_details')?['body/r8c0f26e5a10f41b58fb60554aa7905fe']",
            "item/EML_x0020_Fire_x0020_classification": "@outputs('Get_form_response_details')?['body/rd4cab7c0af2a49cda90a8199ae847044']",
            "item/OB_x0020_Establishment_x0020_zone_x0020_type": "@outputs('Get_form_response_details')?['body/rc384fb52eccf4821a98570602c0cd2aa']",
            "item/OB_x0020_Audible_x0020_fire_x0020_alarm": "@outputs('Get_form_response_details')?['body/r82af4d95beae440ca2683c7d52a79cb9']",
            "item/OB_x0020_Buildings_x0020_summary": "@outputs('Get_form_response_details')?['body/ra7b631590c6140f2995f3e376d04fb05']",
            "item/OB_x0020_Buildings_x0020_description": "@outputs('Get_form_response_details')?['body/r4b0ec61f1231403b9cf9619272082d86']",
            "item/OB_x0020_Establishment_x0020_process_x0020_conducted": "@outputs('Get_form_response_details')?['body/re316dba585284d8f8f7b61df4ba29842']",
            "item/OB_x0020_Ceiling_x0020_Insulation": "@outputs('Get_form_response_details')?['body/r0554aeb2e6fc48a78ec5d1bc575eed05']",
            "item/OB_x0020_Ceiling_x0020_types": "@outputs('Get_form_response_details')?['body/r798b37afa70c4266a1544721d95e51cf']",
            "item/OB_x0020_Ceiling_x0020_options": "@outputs('Format_string_-_Ceiling_types')",
            "item/OB_x0020_Communal_x0020_clubhouse": "@outputs('Get_form_response_details')?['body/rb042c60fdfd1472d90d043731c8d9ed1']",
            "item/OB_x0020_Confidential_x0020_underwriting_x0020_notes": "@outputs('Get_form_response_details')?['body/r58ea8e7d0e9b4175adf144d40c757542']",
            "item/OB_x0020_Construction_x0020_type": "@outputs('Get_form_response_details')?['body/r58bef7818be548a6a4e2b59fbe09b2cd']",
            "item/OB_x0020_Cooking_x0020_extraction_x0020_systems_x0020_or_x0020_ducting": "@outputs('Get_form_response_details')?['body/rf92a05383e0944a8b24fe310ac953abc']",
            "item/OB_x0020_Cooking_x0020_extraction_x0020_systems_x0020_or_x0020_ducting_x0020_service_x0020_contracts": "@outputs('Get_form_response_details')?['body/r4f0bf50711e64f7b88344ac642b5810e']",
            "item/OB_x0020_CSIR_x0020_lightning_x0020_risk_x0020_determination": "@outputs('Get_form_response_details')?['body/r6ded0a597cc2401d84c61bc2c2075bb1']",
            "item/OB_Description_of_buildings": "@outputs('Get_form_response_details')?['body/r00b18a760942465bb1e9de43a0904a5f']",
            "item/OB_x0020_Door_x0020_types": "@outputs('Get_form_response_details')?['body/r0c2ad121e5b34a48a1af2d0f05dac02f']",
            "item/OB_x0020_Door_x0020_options": "@outputs('Format_string_-_Door_types')",
            "item/OB_x0020_Drainage_x0020_adequacy": "@outputs('Get_form_response_details')?['body/r70871932d2f643958557c43fb638b56d']",
            "item/OB_x0020_Drainage_x0020_direction": "@outputs('Get_form_response_details')?['body/r644817fe325f4d72bc85d6bd050ff943']",
            "item/OB_x0020_Drainage_x0020_drainpipes": "@outputs('Get_form_response_details')?['body/r647baf64fe064f69bc87f2ecfbb35af5']",
            "item/OB_x0020_Drainage_x0020_impact": "@outputs('Get_form_response_details')?['body/r5a562f90ee8041bc8aff1ceb3db661b4']",
            "item/OB_x0020_Driveways_x0020_areas": "@outputs('Get_form_response_details')?['body/re8910f8f27a54b0c83e246e310184d56']",
            "item/OB_x0020_Electrical_x0020_Lighting": "@outputs('Format_string_-_Electric_lighting')",
            "item/OB_x0020_Electrical_x0020_reticulation_x0020_backup_x0020_generator_x0020_or_x0020_UPS_x0020_supply": "@outputs('Get_form_response_details')?['body/ra6bd0280ad7a4f6da539b29433e604eb']",
            "item/OB_x0020_Electrical_x0020_reticulation_x0020_solar_x0020_supply_x0020_routing": "@outputs('Get_form_response_details')?['body/r6cb86d749815428ea14ff8bfe78d2a6d']",
            "item/OB_x0020_Electrical_x0020_reticulation_x0020_wiring_x0020_state": "@outputs('Get_form_response_details')?['body/r215ee3ff5596482da4dda8fc0888975a']",
            "item/OB_x0020_Elevators_x0020_and_x0020_escalators_x0020_operational_x0020_state": "@outputs('Format_string_-_Elevators_operational_state')",
            "item/OB_x0020_Emergency_x0020_escape_x0020_routes": "@outputs('Get_form_response_details')?['body/r43a4930c7883409e88afc0451ac27bc0']",
            "item/OB_x0020_Emergency_x0020_escape_x0020_routes_x0020_signage": "@outputs('Get_form_response_details')?['body/rce323fdf5f274cf7819c9bd46c3047c9']",
            "item/OB_x0020_Establishment_x0020_additional_x0020_common_x0020_property_x0020_structures": "@outputs('Format_list_-_Additional_common_property_structures')",
            "item/OB_x0020_Establishment_x0020_ownership_x0020_type": "@outputs('Get_form_response_details')?['body/rff4c65d2cc494129bc5abf3bf7a6a323']",
            "item/OB_x0020_Establishment_x0020_structure_x0020_levels": "@outputs('Get_form_response_details')?['body/r3cfe9b3df47d4b949e362280b58e77f1']",
            "item/OB_x0020_Establishment_x0020_structure_x0020_type": "@outputs('Get_form_response_details')?['body/r5b62429024ad48ed94cc2c53cef3cca5']",
            "item/OB_x0020_Explosion_x0020_hazards": "@outputs('Get_form_response_details')?['body/rb7140094f9394bc2bf9883c053bbb64e']",
            "item/OB_x0020_Explosion_x0020_hazards_x0020_risk": "@outputs('Get_form_response_details')?['body/rc62d0527e38242d3a024cdd3cfae8243']",
            "item/OB_x0020_Fire_x0020_department_x0020_access": "@outputs('Get_form_response_details')?['body/r18fe3163bb2448d095b9c519fecb9de2']",
            "item/OB_x0020_Fire_x0020_department_x0020_distance_x0020__x0028_km_x0029_": "@outputs('Get_form_response_details')?['body/re404db6c31264bebbad6c582dc3f84b3']",
            "item/OB_x0020_Fire_x0020_department_x0020_name": "@outputs('Get_form_response_details')?['body/r38dfa6f091ee4f898e1ad86d2719d355']",
            "item/OB_x0020_Fire_x0020_equipment_x0020_servicing": "@outputs('Get_form_response_details')?['body/rf72171c45f8644e6b191e682f58bedc6']",
            "item/OB_x0020_Fire_x0020_extinguisher_x0020_requirements_x0020_": "@outputs('Format_list_-_Fire_extinguisher_requirements')",
            "item/OB_x0020_Fire_x0020_Extinguishers": "@outputs('Get_form_response_details')?['body/r4732178bfa484eaea9e45698a75ba7a1']",
            "item/OB_x0020_Fire_x0020_hose_x0020_reels": "@outputs('Get_form_response_details')?['body/re55ce66e299f430fbe9922e2170650a8']",
            "item/OB_x0020_Fire_x0020_hydrants_x0020_in_x0020_street": "@outputs('Format_string_-_Fire_hydrants_in_street')",
            "item/OB_x0020_Fire_x0020_hydrants_x0020_on_x0020_property": "@outputs('Get_form_response_details')?['body/rf560ea23d96c4726a24912d1c22ebadf']",
            "item/OB_x0020_Fire_x0020_sprinkler_x0020_systems": "@outputs('Get_form_response_details')?['body/r1fa1b1a2dd3c4d6a8510662ff011b3b5']",
            "item/OB_x0020_Fire_x0020_teams": "@outputs('Get_form_response_details')?['body/raa76c771da904de0b3592268af7f633e']",
            "item/OB_x0020_Firewall_x0020_division": "@outputs('Get_form_response_details')?['body/r1895f97b25324ca4838fc2b9793c7bb7']",
            "item/OB_x0020_Flammable_x0020_substance_x0020_stores": "@outputs('Get_form_response_details')?['body/r7ca9ddbff8254dc49e494aeb923978c5']",
            "item/OB_x0020_Flammable_x0020_substances_x0020_list": "@outputs('Format_list_-_Flammable_substances_list')",
            "item/OB_x0020_Flammable_x0020_substances": "@outputs('Get_form_response_details')?['body/rf797f73ab353403b8f180639198c8010']",
            "item/OB_x0020_Flammable_x0020_substances_x0020_storage_x0020_certification": "@outputs('Get_form_response_details')?['body/r3001bfa7c250471d9ca4a5bb36018400']",
            "item/OB_x0020_Flood_x0020_hazard_x0020_index": "@outputs('Get_form_response_details')?['body/rcc0349918d054907a47b1feab98efd78']",
            "item/OB_x0020_Floor_x0020_types": "@outputs('Get_form_response_details')?['body/rc080fa7ea17f4816af24b751428af2bb']",
            "item/OB_x0020_Floor_x0020_materials": "@outputs('Format_Floor_types_to_nice_string')",
            "item/OB_x0020_Gas_x0020_installation": "@outputs('Get_form_response_details')?['body/r74547b96580f4b3fb56af4f3567f3ab9']",
            "item/OB_x0020_Gas_x0020_Storage": "@outputs('Get_form_response_details')?['body/rc865d0ce5d2f4a33bb98600d785369a3']",
            "item/OB_x0020_General_x0020_and_x0020_tenants_x0020_liability_x0020_": "@outputs('Get_form_response_details')?['body/r75104596ad2b49648c49ce277446c1fe']",
            "item/OB_x0020_General_x0020_and_x0020_tenants_x0020_liability_x0020_items": "@outputs('Format_string_-_General_and_tenants_liability_items')",
            "item/OB_x0020_General_x0020_fire_x0020_protections_x0020_compliance": "@outputs('Get_form_response_details')?['body/r1995851c4a014ce898582ce0672b01d8']",
            "item/OB_x0020_Ground_x0020_slope": "@outputs('Get_form_response_details')?['body/rafa0573d47ee4718b5f548560ea499f3']",
            "item/OB_x0020_Ground_x0020_slope_x0020_retaining_x0020_walls": "@outputs('Get_form_response_details')?['body/r380e5926ad014a08be7b029a2fa544c5']",
            "item/OB_x0020_Hazardous_x0020_chemical_x0020_substances_x0020_list": "@outputs('Format_list_-_Hazardous_chemical_substances')",
            "item/OB_x0020_Hazardous_x0020_chemical_x0020_substances": "@outputs('Get_form_response_details')?['body/r2cbbdb711f1744c0bd98cb9937804801']",
            "item/OB_x0020_Hot_x0020_works": "@outputs('Get_form_response_details')?['body/re65e9ffde5604da0b82532bce0557486']",
            "item/OB_x0020_Housekeeping": "@outputs('Get_form_response_details')?['body/rca6242670a154dafb51aa2c2c7decf7f']",
            "item/OB_x0020_Lightning_x0020_conductors": "@outputs('Get_form_response_details')?['body/r78a1f0fd2c8e4aa488d47ab774f05f93']",
            "item/OB_x0020_Mining_x0020_activities": "@outputs('Get_form_response_details')?['body/r5c33fbba6ba84b988f3f04b0de3d3a7c']",
            "item/OB_x0020_Number_x0020_of_x0020_elevators_x0020_or_x0020_escalators": "@variables('Noofescalators')",
            "item/OB_x0020_Number_x0020_of_x0020_floor_x0020_levels_x0020_or_x0020_floors_x0020_within_x0020_the_x0020_structure": "@outputs('Get_form_response_details')?['body/ref1e009833c046749b9e96bd79b7616c']",
            "item/OB_Number_of_guest_x002d_rooms_within_hotel_or_guest_house": "@variables('Noofguestrooms')",
            "item/OB_x0020_Number_x0020_of_x0020_structures_x0020_or_x0020_erected_x0020_buildings": "@outputs('Get_form_response_details')?['body/rdfbfb09ebd324fec988597f8625d9b9c']",
            "item/OB_x0020_Open_x0020_water_x0020_source_x0020_or_x0020_water_x0020_bodies_x0020_distance_x0020__x0028_m_x0029_": "@variables('Waterdistance')",
            "item/OB_x0020_Open_x0020_water_x0020_source_x0020__x002d__x0020_water_x0020_bodies_x0020_": "@outputs('Get_form_response_details')?['body/r2ae53216fd634b5d8df81b1b126e3680']",
            "item/OB_x0020_Parking_x0020_basement": "@outputs('Get_form_response_details')?['body/r8d718eb6ffe14124aff60b482cd34c6e']",
            "item/OB_x0020_Parking_x0020_open_x0020_areas": "@outputs('Get_form_response_details')?['body/ra141e51f80f0471f8eea1259cd64bc77']",
            "item/OB_x0020_Perimeter_x0020_fencing_x0020_options": "@outputs('Format_string_-_Perimeter_fencing_features')",
            "item/OB_x0020_Perimeter_x0020_fencing": "@outputs('Get_form_response_details')?['body/r4acb85252e464904a852252540e4132f']",
            "item/OB_x0020_Business_x0020_type": "@outputs('Get_form_response_details')?['body/r313fcd3ae24e4a8bb2f5bdb59d96d334']",
            "item/OB_x0020_Property_x0020_front": "@outputs('Get_form_response_details')?['body/r9d663127135f4957bd6e3c232e7a5ac8']",
            "item/OB_x0020_Public_x0020_access_x0020_signage": "@outputs('Get_form_response_details')?['body/ra1b2691d63214431a051a816cf44da40']",
            "item/OB_x0020_Public_x0020_access_x0020_to_x0020_property": "@outputs('Get_form_response_details')?['body/r0673a8a35b7a420391de61d0b86547ed']",
            "item/OB_x0020_Rising_x0020_water_x0020_level_x0020_proximity": "@outputs('Get_form_response_details')?['body/rf8401bf2e906408d8cbdf795fc7c53d8']",
            "item/OB_x0020_Rising_x0020_water_x0020_level_x0020_threat": "@outputs('Get_form_response_details')?['body/r5e77467b93a1444dac610594cf50e609']",
            "item/OB_x0020_Roof_x0020_materials": "@outputs('Get_form_response_details')?['body/r26f6b2ea5cbb4edd9e042efe771ad515']",
            "item/OB_x0020_Roof_x0020_type": "@outputs('Get_form_response_details')?['body/r31577a59a1984c329b03368ba9bdc14a']",
            "item/OB_x0020_SAWS_x0020_lightning_x0020_strikes_x0020_per_x0020_annum": "@outputs('Get_form_response_details')?['body/r7eb446ec56b74ddcb970287217e4a733']",
            "item/OB_x0020_Smoke_x0020_control_x0020_extraction_x0020_systems": "@outputs('Get_form_response_details')?['body/r288f2cf092f64245b7d58226aff0bcec']",
            "item/OB_x0020_Smoke_x0020_detection": "@outputs('Get_form_response_details')?['body/r2a29cf69239d4f2199d36bda8ac84c75']",
            "item/OB_x0020_Spray_x0020_painting": "@outputs('Get_form_response_details')?['body/r37c25916f05943e286f299167633924b']",
            "item/OB_x0020_Subsidence_x0020_and_x0020_landslip": "@outputs('Get_form_response_details')?['body/r9a72ee23b25449cf81119abb37477f4e']",
            "item/OB_x0020_Open_x0020_areas_x0020_or_x0020_vacant_x0020_land_x0020_": "@outputs('Get_form_response_details')?['body/r35c3e329d55d4f9f958addcc143fc8f9']",
            "item/OB_x0020_Open_x0020_areas_x0020_or_x0020_vacant_x0020_land_x0020_fire_x0020_threat": "@outputs('Get_form_response_details')?['body/rf69379b44fae4fe9a9b7cb87887c003a']",
            "item/OB_x0020_Swimming_x0020_pools_x0020_fishponds_x0020_or_x0020_water_x0020_features": "@outputs('Format_list_-_Swimming_pools_and_water_features')",
            "item/OB_x0020_Thatch_x0020_condition": "@outputs('Get_form_response_details')?['body/rb02a5c319f9d4481879bed6cff428f4b']",
            "item/OB_x0020_Thatch_x0020_fireplaces": "@outputs('Get_form_response_details')?['body/rde0b0022eccd4c29a96a0aec4d58c5bb']",
            "item/OB_x0020_Thatch_x0020_structure_x0020_average_x0020_size_x0020__x0028_m2_x0029_": "@variables('Thatchsize')",
            "item/OB_x0020_Thatch_x0020_structure_x0020_distance_x0020_from_x0020_main_x0020_structure_x0020__x0028_m_x0029_": "@variables('Thatchdistance')",
            "item/OB_x0020_Thatch_x0020_structures": "@outputs('Get_form_response_details')?['body/r9d60a4fbe07a420d8edffeb2e56f9e6e']",
            "item/OB_x0020_Truss_x0020_type": "@outputs('Get_form_response_details')?['body/r6c1cc86a6c0e45bea14f580f75a14b60']",
            "item/OB_x0020_Twin_x0020_booster_x0020_connection": "@outputs('Get_form_response_details')?['body/r86b0e8c436da43a298c722fd25c9cb4e']",
            "item/OB_x0020_Wall_x0020_types": "@outputs('Get_form_response_details')?['body/r861cc6e514894487b9a1f91878052d99']",
            "item/OB_x0020_Wall_x0020_options": "@outputs('Format_string_-_Wall_types')",
            "item/OB_x0020_Waste_x0020_management": "@outputs('Get_form_response_details')?['body/r40276cd51e1d47399f08e820902f0489']",
            "item/OB_x0020_Water_x0020_damage": "@outputs('Get_form_response_details')?['body/rdcb65678f45c474fb842b762ffb7803f']",
            "item/OB_x0020_Water_x0020_reticulation": "@outputs('Get_form_response_details')?['body/r8930388f41e84ac3a1c0712b615264d2']",
            "item/OB_x0020_Water_x0020_supply": "@outputs('Get_form_response_details')?['body/r0b9f43ef6e954a00bd9a76ee59ff7ad0']",
            "item/OB_x0020_Wendy_x0020_house_x0020_or_x0020_timber_x0020_shed_x0020_distance_x0020_from_x0020_main_x0020_structure_x0020__x0028_m_x0029_": "@variables('Wendydistance')",
            "item/OB_x0020_Wendy_x0020_house_x0020_or_x0020_timber_x0020_shed_x0020_end_x0020_of_x0020_sentence": "@outputs('Get_form_response_details')?['body/r507c15bb49834cba928bfb907438beac']",
            "item/OB_x0020_Wendy_x0020_houses_x0020_or_x0020_timber_x0020_shed_x0020_structures": "@outputs('Get_form_response_details')?['body/r99efa171d4724940bb1e09089edd535e']",
            "item/OB_x0020_Window_x0020_frame_x0020_type": "@outputs('Get_form_response_details')?['body/r7db6ecf7cecd4474ac13bfc4937e0f86']",
            "item/OB_x0020_Window_x0020_glass_x0020_type": "@outputs('Format_string_-_Window_glass')",
            "item/REQ_x0020_Building_x0020_requirement_x0020_risk_x0020_assessment_x0020_rating": "@outputs('Get_form_response_details')?['body/r4512d777aaee404aacb0613cbea29a5e']",
            "item/REQ_x0020_Building_x0020_requirements_x0020_or_x0020_recommendations_x0020_": "@outputs('Get_form_response_details')?['body/rf771edced4a34098a1841307327990e0']",
            "item/REQ_x0020_Building_x0020_requirements_x0020_or_x0020_recommendations_x0020_list": "@outputs('Format_string_-_Req_building_requirements_and_recommendations_list')",
            "item/REQ_x0020_Electrical_x0020_reticulation": "@outputs('Get_form_response_details')?['body/r6405bec05c704af2a4211aca3746e081']",
            "item/REQ_x0020_Electrical_x0020_reticulation_x0020_list": "@outputs('Format_list_-_Req_electrical_reticulation_list')",
            "item/REQ_x0020_Fire_x0020_equipment_x0020_servicing": "@outputs('Get_form_response_details')?['body/r0540d56b3c594f04876d141457b5994c']",
            "item/REQ_x0020_Fire_x0020_hose_x0020_reels": "@outputs('Get_form_response_details')?['body/r67712dd89ff54a3bbc31cc7dae49a63f']",
            "item/REQ_x0020_Fire_x0020_hydrant": "@outputs('Get_form_response_details')?['body/r25eb63e3ae6445728f8c7acab8c3e4a7']",
            "item/REQ_x0020_Fire_x0020_requirements_x0020_and_x0020_recommendations_x0020_": "@outputs('Get_form_response_details')?['body/r969f2d563e734cce8aa21f76165ee814']",
            "item/REQ_x0020_Fire_x0020_requirements_x0020_risk_x0020_rating_x0020_": "@outputs('Get_form_response_details')?['body/r3e4874760b4f479ab3d206c366339752']",
            "item/REQ_x0020_Fire_x0020_sprinkler_x0020_systems": "@outputs('Get_form_response_details')?['body/r17523e6ca7e44971a4a1d7066565e162']",
            "item/REQ_x0020_Fire_x0020_teams": "@outputs('Get_form_response_details')?['body/r2115e3ad630f49da91aa8ef1dedae2b1']",
            "item/REQ_x0020_Gas_x0020_installation_x0020_and_x0020_Cooking_x0020_Extraction_x0020_Systems": "@outputs('Get_form_response_details')?['body/r275aef1e0b6c477b9127a990133ab700']",
            "item/REQ_x0020_Gas_x0020_Storage": "@outputs('Get_form_response_details')?['body/r8997e5c3f0e14cc1af3fda61d3322ef1']",
            "item/REQ_x0020_Hazardous_x0020_chemical_x0020_or_x0020_flammable_x0020_substances_x0020_storage_x0020_": "@outputs('Get_form_response_details')?['body/re1fd499b641945b7b25d50b521bb1b16']",
            "item/REQ_x0020_Hot_x0020_works": "@outputs('Get_form_response_details')?['body/r235b92d22de34c7f9206352e85500914']",
            "item/REQ_x0020_Housekeeping": "@outputs('Get_form_response_details')?['body/r45b7cf9289bd47f9a6ef53285688433c']",
            "item/REQ_x0020_Liability_x0020_requirements": "@outputs('Get_form_response_details')?['body/ref84245cd0a24c6b8f1f1ba9f0da3ba5']",
            "item/REQ_x0020_Smoke_x0020_control_x0020_extraction_x0020_systems": "@outputs('Get_form_response_details')?['body/r0220b06a083243138d6db2a9fa9777ce']",
            "item/REQ_x0020_Smoke_x0020_detection_x0020_or_x0020_fire_x0020_alarm_x0020_": "@outputs('Get_form_response_details')?['body/r23ac931d2c6b4467913b6f608b3e9da3']",
            "item/REQ_x0020_Spray_x0020_painting": "@outputs('Format_string_-_Spray_painting_recommendations')",
            "item/REQ_x0020_Spray_x0020_painting_x0020_tenant_x0020_name": "@outputs('Get_form_response_details')?['body/rc28c64599e3b4f3fa967da5f5c64c187']",
            "item/REQ_x0020_Twin_x0020_booster_x0020_connection": "@outputs('Get_form_response_details')?['body/r8421523d490f4b26a40d12a22de03f0f']",
            "item/REQ_x0020_Waste_x0020_management": "@outputs('Get_form_response_details')?['body/r61e64a5c700448ccad475970b8aac1ec']"
        },
        "authentication": "@parameters('$authentication')"
    },
    "metadata": {
        "operationMetadataId": "39e42ee1-0f94-427e-bf9c-db31c090d372"
    }
}

hope this helps

I tried twice now to post, I think it is because I tried to include the actual code from the update file properties that it somehow just disappears ...

Create file:

GavinF69_4-1669616624165.png

GavinF69_5-1669616687202.pngGavinF69_6-1669616754500.png

Update file properties:

GavinF69_0-1669616224056.png

screenshot of code... (you will see there is no formatdatetime anywhere in the update file properties ...

 

GavinF69_8-1669616873535.png

 

GavinF69_1-1669616322600.pngGavinF69_2-1669616391375.png

GavinF69_3-1669616504499.png

I hope this saves and posts now...

 

Pstork1
Multi Super User
Multi Super User

Based on the original error message I would take a look at the formulas you are using for your Current insured covers. In the Concat() you are parsing pieces out of the file name. I think the addition of the numbers in the name is throwing off that calculation.  I would take that Concat() and put it in a Compose action just prior to your update action to see what the formula is really generating. That should help you figure out what needs to be changed to fix your Concat().  I suspect you'll need to use some other special character between the name and the date so you can parse them out to seperate them better.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

@Pstork1 thanks for the reply, I have moved the concat action out of the update file properties, I also did a compose on my actual date component for the file name and that part works just fine.

GavinF69_0-1669646681690.png

I guess it's my fault for not really checking what that concat action was doing (I used the sample option under expressions to generate the statement and the data format was as I expected it so just went ahead and applied it). 

The variable piece declared is straightforward

GavinF69_1-1669646888117.png

The formatting not so much, pretty much I have a string of numbers which I want to format to look like an accounting format of numbers...

 

The values come in as

123456789 and I want to format them as 123 456 789.00

or 

12345678 and I want it to display as 12 345 678.00

 

In excel you could use something like "# ###.00" to format the cell If I could do that here it just might work.  If you have a way of doing that I think my situation would be solved.

"# ###.00"  will work as a format string in Text() the same way it works in Excel.  It will show digits for each of the # signs unless the digit is 0, then it will display a blank.  In your example you would want

"### ###.00" 



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

@Pstork1 , thanks so much for pointing me in the right direction, here is what I eventually went with and the values are formatted exactly as I wanted:

 

GavinF69_0-1669656340315.pngGavinF69_1-1669656388913.pngGavinF69_2-1669656480215.png

I still see a strange error on the Update File Properties section, even thought the file is created and the SharePoint columns are populated.

GavinF69_3-1669656758080.png

I sense this latest error is why the actual quick parts in the word document aren't updated like I explained in this post.... Re: HEEEEEELLLLLLP PLEASE - Opening created word f... - Power Platform Community (microsoft.com)

Helpful resources

Announcements

It's #MPPC23 Week! Check Out the Community Sessions and Events Happening in Vegas

After all the planning and preparing, the annual Microsoft Power Platform Conference is finally here! We are excited to see so many of our community in Las Vegas this week. To help make sure you don't miss any of the workshops, sessions, and events we have planned, make sure to check out this handy Community One-Sheet, and download the pdf today! Make sure to stop by the Community Lounge to meet @hugobernier, @EricArcher, @heaher_italent, and @AshleyFelts from our team!    

Join Us for the First-Ever Biz Apps Community User Group Meeting: Live from MPPC23

      Join us for the first-ever the Biz Apps Community User Group meeting live from the Power Platform Conference! This one hour user group meeting is all about discovering the value and benefits of User Groups! Discover how you can find a group in your local area or about specific topics where you can learn new skills and meet like-minded people as a user group member.   Hear from User Group leaders about why they do what they do and what resources they receive to help them succeed as community ambassadors. If you have never attended a User Group meeting before, this will be a great introduction! We hope you are inspired to find a group that meets your unique interests!   October 5th at 2:15 pm Pacific time   If you're attending #MPPC23 in Las Vegas, join us in person! Find out more here: https://powerplatformconf.com/#!/session/Biz%20Apps%20Community%20User%20Group%20Meeting%20-%20Live%20from%20MPPC/6172   Not at MPPC23? Attend vvirtually by registering here: https://aka.ms/MPPCusergroupmeeting2023    If you can't attend this meeting live, don't worry! We will record this meeting and share it with the Community at powerusers.microsoft.com 

Back to Basics: Tuesday Tip #1: All About YOUR Community Account

We are excited to kick off our new #TuesdayTIps series, "Back to Basics." This weekly series is our way of helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we will feature new areas of content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other!     This Week's Tips: Account Support: Changing Passwords, Changing Email Addresses or Usernames, "Need Admin Approval," Etc.Wondering how to get support for your community account? Check out the details on these common questions and more. Just follow the link below for articles that explain it all.Community Account Support - Power Platform Community (microsoft.com)   All About GDPR: How It Affects Closing Your Community Account (And Why You Should Think Twice Before You Do)GDPR, the General Data Protection Regulation (GDPR), took effect May 25th 2018. A European privacy law, GDPR imposes new rules on companies and other organizations offering goods and services to people in the European Union (EU), or that collect and analyze data tied to EU residents. GDPR applies no matter where you are located, and it affects what happens when you decide to close your account. Read the details here:All About GDPR - Power Platform Community (microsoft.com)   Getting to Know You: Setting Up Your Community Profile, Customizing Your Profile, and More.Your community profile helps other members of the community get to know you as you begin to engage and interact. Your profile is a mirror of your activity in the community. Find out how to set it up, change your avatar, adjust your time zone, and more. Click on the link below to find out how:Community Profile, Time Zone, Picture (Avatar) & D... - Power Platform Community (microsoft.com)   That's it for this week. Tune in for more Tuesday Tips next Tuesday and join the community as we get "Back to Basics."

Announcing the MPPC's Got Power Talent Show at #MPPC23

Are you attending the Microsoft Power Platform Conference 2023 in Las Vegas? If so, we invite you to join us for the MPPC's Got Power Talent Show!      Our talent show is more than a show—it's a grand celebration of connection, inspiration, and shared journeys. Through stories, skills, and collective experiences, we come together to uplift, inspire, and revel in the magic of our community's diverse talents. This year, our talent event promises to be an unforgettable experience, echoing louder and brighter than anything you've seen before.    We're casting a wider net with three captivating categories:  Demo Technical Solutions: Show us your Power Platform innovations, be it apps, flows, chatbots, websites or dashboards... Storytelling: Share tales of your journey with Power Platform. Hidden Talents: Unveil your creative side—be it dancing, singing, rapping, poetry, or comedy. Let your talent shine!    Got That Special Spark? A Story That Demands to Be Heard? Your moment is now!  Sign up to Showcase Your Brilliance: https://aka.ms/MPPCGotPowerSignUp  Deadline for submissions: Thursday, Sept 28th    How It Works:  Submit this form to sign up: https://aka.ms/MPPCGotPowerSignUp  We'll contact you if you're selected. Get ready to be onstage!  The Spotlight is Yours: Each participant has 3-5 minutes to shine, with insightful commentary from our panel of judges. We’re not just giving you a stage; we’re handing you the platform to make your mark.     Be the Story We Tell: Your talents and narratives will not just entertain but inspire, serving as the bedrock for our community’s future stories and successes.    Celebration, Surprises, and Connections: As the curtain falls, the excitement continues! Await surprise awards and seize the chance to mingle with industry experts, Microsoft Power Platform leaders, and community luminaries. It's not just a show; it's an opportunity to forge connections and celebrate shared successes.    Event Details:  Date and Time: Wed Oct 4th, 6:30-9:00PM   Location: MPPC23 at the MGM Grand, Las Vegas, NV, USA  

September User Group Success Story: Reading Dynamics 365 & Power Platform User Group

The Reading Dynamics 365 and Power Platform User Group is a community-driven initiative that started in September 2022. It has quickly earned recognition for its enthusiastic leadership and resilience in the face of challenges. With a focus on promoting learning and networking among professionals in the Dynamics 365 and Power Platform ecosystem, the group has grown steadily and gained a reputation for its commitment to its members!   The group, which had its inaugural event in January 2023 at the Microsoft UK Headquarters in Reading, has since organized three successful gatherings, including a recent social lunch. They maintain a regular schedule of four events per year, each attended by an average of 20-25 enthusiastic participants who enjoy engaging talks and, of course, pizza.   The Reading User Group's presence is primarily spread through LinkedIn and Meetup, with the support of the wider community. This thriving community is managed by a dedicated team consisting of Fraser Dear, Tim Leung, and Andrew Bibby, who serves as the main point of contact for the UK Dynamics 365 and Power Platform User Groups.   Andrew Bibby, an active figure in the Dynamics 365 and Power Platform community, nominated this group due to his admiration for the Reading UK User Group's efforts. He emphasized their remarkable enthusiasm and success in running the group, noting that they navigated challenges such as finding venues with resilience and smiles on their faces. Despite being a relatively new group with 20-30 members, they have managed to achieve high attendance at their meetings.   The group's journey began when Fraser Dear moved to the Reading area and realized the absence of a user group catering to professionals in the Dynamics 365 and Power Platform space. He reached out to Andrew, who provided valuable guidance and support, allowing the Reading User Group to officially join the UK Dynamics 365 and Power Platform User Groups community.   One of the group's notable achievements was overcoming the challenge of finding a suitable venue. Initially, their "home" was the Microsoft UK HQ in Reading. However, due to office closures, they had to seek a new location with limited time. Fortunately, a connection with Stephanie Stacey from Microsoft led them to Reading College and its Institute of Technology. The college generously offered them event space and support, forging a mutually beneficial partnership where the group promotes the Institute and encourages its members to support the next generation of IT professionals.   With the dedication of its leadership team, the Reading Dynamics 365 and Power Platform User Group is poised to continue growing and thriving! Their story exemplifies the power of community-driven initiatives and the positive impact they can have on professional development and networking in the tech industry. As they move forward with their upcoming events and collaborations with Reading College, the group is likely to remain a valuable resource for professionals in the Reading area and beyond.  

A Celebration of What We've Achieved--And Announcing Our Winners

As the sun sets on the #SummerofSolutions Challenge, it's time to reflect and celebrate! The journey we embarked upon together was not just about providing answers – it was about fostering a sense of community, encouraging collaboration, and unlocking the true potential of the Power Platform tools.   From the initial announcement to the final week's push, the Summer of Solutions Challenge has been a whirlwind of engagement and growth. It was a call to action for every member of our Power Platform community, urging them to contribute their expertise, engage in discussions, and elevate collective knowledge across the community as part of the low-code revolution.   Reflecting on the Impact As the challenge ends, it's essential to reflect on the impact it’s had across our Power Platform communities: Community Resilience: The challenge demonstrated the resilience of our community. Despite geographical distances and diverse backgrounds, we came together to contribute, learn, and collaborate. This resilience is the cornerstone of our collective strength.Diverse Expertise: The solutions shared during the challenge underscore the incredible expertise within our community. From intricate technical insights to creative problem-solving, our members showcased their diverse skill sets, enhancing our community's depth.Shared Learning: Solutions spurred shared learning. They provided opportunities for members to grasp new concepts, expand their horizons, and uncover the Power Platform tools' untapped potential. This learning ripple effect will continue to shape our growth. Empowerment: Solutions empowered community members. They validated their knowledge, boosted their confidence, and highlighted their contributions. Each solution shared was a step towards personal and communal empowerment. We are proud and thankful as we conclude the Summer of Solutions Challenge. The challenge showed the potential of teamwork, the benefit of knowledge-sharing, and the resilience of our Power Platform community. The solutions offered by each member are more than just answers; they are the expression of our shared commitment to innovation, growth, and progress!     Drum roll, Please... And now, without further ado, it's time to announce the winners who have risen above the rest in the Summer of Solutions Challenge!   These are the top community users and Super Users who have not only earned recognition but have become beacons of inspiration for us all.   Power Apps Community:  Community User Winner: @SpongYe Super User Winner: Pending Acceptance Power Automate Community:  Community User Winner: @trice602 Super User Winner: @Expiscornovus  Power Virtual Agents Community: Community User Winner: Pending AcceptanceSuper User: Pending Acceptance Power Pages Community: Community User Winner: @OOlashyn Super User Winner: @ChristianAbata   We are also pleased to announced two additional tickets that we are awarding to the Overall Top Solution providers in the following communities:    Power Apps: @LaurensM   Power Automate: @ManishSolanki    Thank you for making this challenge a resounding success. Your participation has reaffirmed the strength of our community and the boundless potential that lies within each of us. Let's keep the spirit of collaboration alive as we continue on this incredible journey in Power Platform together.Winners, we will see you in Vegas! Every other amazing solutions superstar, we will see you in the Community!Congratulations, everyone!

Users online (4,574)