diff --git a/samples/last-working-day/README.md b/samples/last-working-day/README.md
new file mode 100644
index 00000000..d98bf41c
--- /dev/null
+++ b/samples/last-working-day/README.md
@@ -0,0 +1,125 @@
+# Date of the last working day of the month
+
+## Summary
+
+This sample flow calculates the last working date of the month, accounting for weekends and holidays. It utilizes the following key components:
+
+* The flow leverages an [API] (https://date.nager.at/swagger/index.html) to retrieve holidays for a specified year and country.
+* For holidays not included in the API's response, the flow allows for the addition of special holidays using a custom data store, such as SharePoint.
+* The flow takes into account weekends when determining the last working day.
+* This approach can be adapted to various countries and organizational needs.
+
+
+![image](./assets/1.jpg)
+![image](./assets/2.jpg)
+![image](./assets/3.jpg)
+![image](./assets/4.jpg)
+
+## Applies to
+
+![Power Apps](https://img.shields.io/badge/Power%20Apps-No-red "No")
+![Power Automate](https://img.shields.io/badge/Power%20Automate-Yes-green "Yes")
+![Power BI](https://img.shields.io/badge/Power%20BI-No-red "No")
+![Power Pages](https://img.shields.io/badge/Power%20Pages-No-red "No")
+![Power Virtual Agents](https://img.shields.io/badge/Power%20Virtual%20Agents-No-red "No")
+![Dataverse](https://img.shields.io/badge/Dataverse-No-red "No")
+![AI Builder](https://img.shields.io/badge/AI%20Builder-No-red "No")
+![Custom Connectors](https://img.shields.io/badge/Custom%20Connectors-No-red "No")
+![Power Fx](https://img.shields.io/badge/Power%20Fx-No-red "No")
+
+
+
+## Compatibility
+
+![Premium License](https://img.shields.io/badge/Premium%20License-Required-green.svg "Premium license required")
+
+## Contributors
+
+* [Sudeep Ghatak](https://github.com/sudeepghatak) | [LinkedIn] (https://www.linkedin.com/in/sudeepghatak/)
+
+## Version history
+
+Version|Date|Comments
+-------|----|--------
+1.0|July 22, 2024|Initial release
+
+## Features
+
+This sample flow demonstrates the following key concepts:
+
+* Calling an External Web Service: Leverage an API to retrieve relevant data (e.g., public holidays).
+* Date Calculations: Perform date manipulations to determine specific days, such as the last working day of the month.
+* Usage of Arrays: Utilize arrays to store and manage lists of dates, such as holidays and weekends.
+* Do While Loops: Implement do while loops to iterate through dates until the desired condition is met.
+
+
+## Prerequisites
+
+You must have a Power Automate premium license to call external web service.
+You must have a list provisioned to store additional holidays.
+![image](./assets/5.jpg)
+
+### Connection References
+The solution includes two connection references.
+* SharePoint Connection
+
+
+### Using the solution zip
+
+The following solution components are used in this sample:
+
+Component|Type
+---------|-----
+Getthelastworkingday_1_0_0_2.zip | Power Automate Solution
+
+
+## Minimal Path to Awesome
+
+### Using the solution zip
+1. [Download](./solution/Getthelastworkingday_1_0_0_2.zip) the solution `.zip` from the `solution` folder.
+2. Within **https://make.powerautomate.com**, import the `.zip` file via **Solutions** > **Import solution** > **Browse** and select the `.zip` file you just downloaded.
+3. Once the solution is imported, edit it
+
+### Using the source code
+
+You can also use the [Power Apps CLI](https://docs.microsoft.com/powerapps/developer/data-platform/powerapps-cli) to pack the source code by following these steps:
+
+* Clone the repository to a local drive
+* Pack the source files back into a solution `.zip` file:
+
+ ```bash
+ pac solution pack --zipfile pathtodestinationfile --folder pathtosourcefolder --processCanvasApps
+ ```
+
+ Making sure to replace `pathtosourcefolder` to point to the path to this sample's `sourcecode` folder, and `pathtodestinationfile` to point to the path of this solution's `.zip` file (located under the `solution` folder)
+* Within **Power Apps Studio**, import the solution `.zip` file using **Solutions** > **Import Solution** and select the `.zip` file you
+
+
+
+
+## Features
+
+This sample illustrates the following concepts:
+
+* Calculating the last working day of the month
+* Calling an external web service to get holidays with Year and Country Codes as parameters
+* Getting holidays from an internal data store (SharePoint in this case)
+* Date calculations to deduce the last working day
+
+## Help
+
+We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.
+
+If you encounter any issues while using this sample, you can [create a new issue](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=bug-report.yml&sample=json-string-generator&authors=@shaheerahmadch&title=json-string-generator%20-%20).
+
+For questions regarding this sample, [create a new question](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=question.yml&sample=json-string-generator&authors=@shaheerahmadch&title=json-string-generator%20-%20).
+
+Finally, if you have an idea for improvement, [make a suggestion](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=suggestion.yml&sample=json-string-generator&authors=@shaheerahmadch&title=json-string-generator%20-%20).
+
+## Disclaimer
+
+**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
+
+
+
+
diff --git a/samples/last-working-day/assets/1.jpg b/samples/last-working-day/assets/1.jpg
new file mode 100644
index 00000000..5b40454d
Binary files /dev/null and b/samples/last-working-day/assets/1.jpg differ
diff --git a/samples/last-working-day/assets/2.jpg b/samples/last-working-day/assets/2.jpg
new file mode 100644
index 00000000..54054bfa
Binary files /dev/null and b/samples/last-working-day/assets/2.jpg differ
diff --git a/samples/last-working-day/assets/3.jpg b/samples/last-working-day/assets/3.jpg
new file mode 100644
index 00000000..ce023347
Binary files /dev/null and b/samples/last-working-day/assets/3.jpg differ
diff --git a/samples/last-working-day/assets/4.jpg b/samples/last-working-day/assets/4.jpg
new file mode 100644
index 00000000..2617d468
Binary files /dev/null and b/samples/last-working-day/assets/4.jpg differ
diff --git a/samples/last-working-day/assets/5.jpg b/samples/last-working-day/assets/5.jpg
new file mode 100644
index 00000000..9bd1d31a
Binary files /dev/null and b/samples/last-working-day/assets/5.jpg differ
diff --git a/samples/last-working-day/solution/Getthelastworkingday_1_0_0_2.zip b/samples/last-working-day/solution/Getthelastworkingday_1_0_0_2.zip
new file mode 100644
index 00000000..611afb03
Binary files /dev/null and b/samples/last-working-day/solution/Getthelastworkingday_1_0_0_2.zip differ
diff --git a/samples/last-working-day/sourcecode/Workflows/Getlastworkingday-A5C4A221-D247-EF11-A316-6045BD3EA090.json b/samples/last-working-day/sourcecode/Workflows/Getlastworkingday-A5C4A221-D247-EF11-A316-6045BD3EA090.json
new file mode 100644
index 00000000..ed4e28f7
--- /dev/null
+++ b/samples/last-working-day/sourcecode/Workflows/Getlastworkingday-A5C4A221-D247-EF11-A316-6045BD3EA090.json
@@ -0,0 +1,627 @@
+{
+ "properties": {
+ "connectionReferences": {
+ "shared_sharepointonline": {
+ "api": {
+ "name": "shared_sharepointonline"
+ },
+ "connection": {
+ "connectionReferenceLogicalName": "cr353_sharedsharepointonline_d2fb4"
+ },
+ "runtimeSource": "invoker"
+ }
+ },
+ "definition": {
+ "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
+ "contentVersion": "undefined",
+ "parameters": {
+ "$authentication": {
+ "defaultValue": {},
+ "type": "SecureObject"
+ },
+ "$connections": {
+ "defaultValue": {},
+ "type": "Object"
+ }
+ },
+ "triggers": {
+ "manual": {
+ "type": "Request",
+ "kind": "Button",
+ "inputs": {
+ "schema": {
+ "type": "object",
+ "properties": {},
+ "required": []
+ }
+ },
+ "metadata": {
+ "operationMetadataId": "da9e7fd4-caab-4795-acc8-4638b65baba5"
+ }
+ }
+ },
+ "actions": {
+ "Compose_-__Get_current_date": {
+ "type": "Compose",
+ "inputs": "@utcNow()",
+ "runAfter": {
+ "Initialize_variable_-_Last_Day_2": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "a9549860-f827-4e56-b59e-65dcf0e7d57e"
+ }
+ },
+ "Compose_-_Get_last_day": {
+ "type": "Compose",
+ "inputs": "@formatDateTime(subtractFromTime(startOfMonth(addToTime(outputs('Compose_-__Get_current_date'), 1, 'Month')), 1, 'Day'), 'yyyy-MM-dd')",
+ "runAfter": {
+ "Compose_-_Get_current_year": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "e996f94a-d4b0-40e9-9e5a-bd17d3240195"
+ }
+ },
+ "Switch": {
+ "type": "Switch",
+ "expression": "@dayOfWeek(outputs('Compose_-_Get_last_day'))",
+ "default": {
+ "actions": {
+ "Set_variable_-_Last_day_2": {
+ "type": "SetVariable",
+ "inputs": {
+ "name": "Last Day",
+ "value": "@outputs('Compose_-_Get_last_day')"
+ },
+ "metadata": {
+ "operationMetadataId": "f15f9599-baa0-42fa-995f-9b07eda96d7b"
+ }
+ }
+ }
+ },
+ "cases": {
+ "Case_-_Sunday": {
+ "actions": {
+ "Set_variable_-_Last_day": {
+ "type": "SetVariable",
+ "inputs": {
+ "name": "Last Day",
+ "value": "@{addDays(outputs('Compose_-_Get_last_day'),-2)}"
+ },
+ "metadata": {
+ "operationMetadataId": "f15f9599-baa0-42fa-995f-9b07eda96d7b"
+ }
+ }
+ },
+ "case": 0
+ },
+ "Case_-_Saturday": {
+ "actions": {
+ "Set_variable_-_Last_Day_1": {
+ "type": "SetVariable",
+ "inputs": {
+ "name": "Last Day",
+ "value": "@{addDays(outputs('Compose_-_Get_last_day'),-1)}"
+ },
+ "metadata": {
+ "operationMetadataId": "f15f9599-baa0-42fa-995f-9b07eda96d7b"
+ }
+ }
+ },
+ "case": 6
+ }
+ },
+ "runAfter": {
+ "Compose_-_Get_last_day": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "bfd77bf0-81a7-424d-80b5-34b7c65a9b75"
+ }
+ },
+ "Initialize_variable_-_Last_Day": {
+ "type": "InitializeVariable",
+ "inputs": {
+ "variables": [
+ {
+ "name": "Last Day",
+ "type": "string"
+ }
+ ]
+ },
+ "runAfter": {
+ "Initialize_variable_-_Date_Array_2": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "5987c86b-631c-4ca3-84b1-9d51a763f47d"
+ }
+ },
+ "HTTP": {
+ "type": "Http",
+ "inputs": {
+ "uri": "https://date.nager.at/api/v3/publicholidays/@{outputs('Compose_-_Get_current_year')}/@{outputs('Compose_-_Country_code')}",
+ "method": "GET"
+ },
+ "runAfter": {
+ "Switch": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "be063eb3-0f3f-4cda-bbab-26f8fc76f70b"
+ }
+ },
+ "Compose_-_Country_code": {
+ "type": "Compose",
+ "inputs": "NZ",
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "d0e9e116-cdb6-40e3-a04b-a1acc70d88a3"
+ }
+ },
+ "Compose_-_Get_current_year": {
+ "type": "Compose",
+ "inputs": "@utcNow('yyyy')",
+ "runAfter": {
+ "Compose_-__Get_current_date": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "34aa6a0e-265b-45b1-9acb-9ccf01704db7"
+ }
+ },
+ "Parse_JSON": {
+ "type": "ParseJson",
+ "inputs": {
+ "content": "@body('HTTP')",
+ "schema": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "date": {
+ "type": "string"
+ },
+ "localName": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "countryCode": {
+ "type": "string"
+ },
+ "fixed": {
+ "type": "boolean"
+ },
+ "global": {
+ "type": "boolean"
+ },
+ "counties": {},
+ "launchYear": {},
+ "types": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
+ },
+ "required": [
+ "date",
+ "localName",
+ "name",
+ "countryCode",
+ "fixed",
+ "global",
+ "counties",
+ "launchYear",
+ "types"
+ ]
+ }
+ }
+ },
+ "runAfter": {
+ "HTTP": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "18615fc9-0f16-4872-91c6-9cc3708b39c1"
+ }
+ },
+ "Initialize_variable_-_Date_Array": {
+ "type": "InitializeVariable",
+ "inputs": {
+ "variables": [
+ {
+ "name": "DateArray",
+ "type": "array"
+ }
+ ]
+ },
+ "runAfter": {
+ "Compose_-_Country_code": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "c4e827e5-c2cf-4e84-ad1d-c40b612fba1d"
+ }
+ },
+ "Apply_to_each": {
+ "type": "Foreach",
+ "foreach": "@body('Parse_JSON')",
+ "actions": {
+ "Append_to_array_variable": {
+ "type": "AppendToArrayVariable",
+ "inputs": {
+ "name": "DateArray",
+ "value": "@items('Apply_to_each')['date']"
+ },
+ "metadata": {
+ "operationMetadataId": "0f2eef3f-f36c-41dc-b3ae-eeb7a1bb99c9"
+ }
+ }
+ },
+ "runAfter": {
+ "Parse_JSON": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "f1175c1e-c842-420f-a25e-ffdea1490e1a"
+ }
+ },
+ "Initialize_variable_-_Last_Day_2": {
+ "type": "InitializeVariable",
+ "inputs": {
+ "variables": [
+ {
+ "name": "Last Day 2",
+ "type": "string"
+ }
+ ]
+ },
+ "runAfter": {
+ "Initialize_variable_-_Last_Day": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "5987c86b-631c-4ca3-84b1-9d51a763f47d"
+ }
+ },
+ "Initialize_variable_-_Date_Array_2": {
+ "type": "InitializeVariable",
+ "inputs": {
+ "variables": [
+ {
+ "name": "DateArray 2",
+ "type": "array"
+ }
+ ]
+ },
+ "runAfter": {
+ "Initialize_variable_-_Date_Array": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "a7ad3a18-dc3b-4e81-8e57-406fdb8d6675"
+ }
+ },
+ "Parse_JSON_2": {
+ "type": "ParseJson",
+ "inputs": {
+ "content": "@outputs('Get_items')?['body/value']",
+ "schema": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "@@odata.etag": {
+ "type": "string"
+ },
+ "ItemInternalId": {
+ "type": "string"
+ },
+ "ID": {
+ "type": "integer"
+ },
+ "Title": {
+ "type": "string"
+ },
+ "HolidayDate": {
+ "type": "string"
+ },
+ "Modified": {
+ "type": "string"
+ },
+ "Created": {
+ "type": "string"
+ },
+ "Author": {
+ "type": "object",
+ "properties": {
+ "@@odata.type": {
+ "type": "string"
+ },
+ "Claims": {
+ "type": "string"
+ },
+ "DisplayName": {
+ "type": "string"
+ },
+ "Email": {
+ "type": "string"
+ },
+ "Picture": {
+ "type": "string"
+ },
+ "Department": {
+ "type": "string"
+ },
+ "JobTitle": {
+ "type": "string"
+ }
+ }
+ },
+ "Author#Claims": {
+ "type": "string"
+ },
+ "Editor": {
+ "type": "object",
+ "properties": {
+ "@@odata.type": {
+ "type": "string"
+ },
+ "Claims": {
+ "type": "string"
+ },
+ "DisplayName": {
+ "type": "string"
+ },
+ "Email": {
+ "type": "string"
+ },
+ "Picture": {
+ "type": "string"
+ },
+ "Department": {
+ "type": "string"
+ },
+ "JobTitle": {
+ "type": "string"
+ }
+ }
+ },
+ "Editor#Claims": {
+ "type": "string"
+ },
+ "{Identifier}": {
+ "type": "string"
+ },
+ "{IsFolder}": {
+ "type": "boolean"
+ },
+ "{Thumbnail}": {
+ "type": "object",
+ "properties": {
+ "Large": {},
+ "Medium": {},
+ "Small": {}
+ }
+ },
+ "{Link}": {
+ "type": "string"
+ },
+ "{Name}": {
+ "type": "string"
+ },
+ "{FilenameWithExtension}": {
+ "type": "string"
+ },
+ "{Path}": {
+ "type": "string"
+ },
+ "{FullPath}": {
+ "type": "string"
+ },
+ "{HasAttachments}": {
+ "type": "boolean"
+ },
+ "{VersionNumber}": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "@@odata.etag",
+ "ItemInternalId",
+ "ID",
+ "Title",
+ "HolidayDate",
+ "Modified",
+ "Created",
+ "Author",
+ "Author#Claims",
+ "Editor",
+ "Editor#Claims",
+ "{Identifier}",
+ "{IsFolder}",
+ "{Thumbnail}",
+ "{Link}",
+ "{Name}",
+ "{FilenameWithExtension}",
+ "{Path}",
+ "{FullPath}",
+ "{HasAttachments}",
+ "{VersionNumber}"
+ ]
+ }
+ }
+ },
+ "runAfter": {
+ "Get_items": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "1aa862fc-22e4-4c1b-8e85-9ee7ba60260f"
+ }
+ },
+ "Set_variable_3": {
+ "type": "SetVariable",
+ "inputs": {
+ "name": "Last Day 2",
+ "value": "@variables('Last Day')"
+ },
+ "runAfter": {
+ "Switch": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "5ce511d5-4c80-4b85-aceb-9da8d449440c"
+ }
+ },
+ "Get_items": {
+ "type": "OpenApiConnection",
+ "inputs": {
+ "parameters": {
+ "dataset": "https://thetaco1nz.sharepoint.com/sites/Sudeep",
+ "table": "616d84be-b476-4c54-9fbd-43124cf80a03"
+ },
+ "host": {
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline",
+ "operationId": "GetItems",
+ "connectionName": "shared_sharepointonline"
+ }
+ },
+ "runAfter": {
+ "Set_variable_3": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "0ab90089-62ce-4610-bcc9-efaec218d90b"
+ }
+ },
+ "Compose": {
+ "type": "Compose",
+ "inputs": "@variables('Last Day')",
+ "runAfter": {
+ "Do_until": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "6a3b78ba-cf53-4a3f-ba39-69d5deb7d307"
+ }
+ },
+ "Do_until": {
+ "type": "Until",
+ "expression": "@not(contains(variables('DateArray'), variables('Last Day')))",
+ "limit": {
+ "count": 60,
+ "timeout": "PT1H"
+ },
+ "actions": {
+ "Compose_-_Last_Working_Day": {
+ "type": "Compose",
+ "inputs": "@variables('Last Day')",
+ "metadata": {
+ "operationMetadataId": "c197d387-f319-4426-84ba-6ca9508f05e3"
+ }
+ },
+ "Set_variable": {
+ "type": "SetVariable",
+ "inputs": {
+ "name": "Last Day",
+ "value": "@{addDays(outputs('Compose_-_Last_Working_Day'), -1, 'yyyy-MM-dd')}"
+ },
+ "runAfter": {
+ "Compose_-_Last_Working_Day": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "dfbe71f0-fef8-481f-9e42-58dc7f80c61b"
+ }
+ }
+ },
+ "runAfter": {
+ "Set_variable_4": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "af74103d-fa67-44f2-bea5-5064685488f4"
+ }
+ },
+ "Compose_2": {
+ "type": "Compose",
+ "inputs": "@union(variables('DateArray'),variables('DateArray 2'))",
+ "runAfter": {
+ "Apply_to_each_2": [
+ "Succeeded"
+ ],
+ "Apply_to_each": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "63252fb3-59f6-45e5-baa8-cdab4efce8d0"
+ }
+ },
+ "Set_variable_4": {
+ "type": "SetVariable",
+ "inputs": {
+ "name": "DateArray",
+ "value": "@outputs('Compose_2')"
+ },
+ "runAfter": {
+ "Compose_2": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "83a0ce1b-c94c-48df-af44-8b98f1d7ba3f"
+ }
+ },
+ "Apply_to_each_2": {
+ "type": "Foreach",
+ "foreach": "@body('Parse_JSON_2')",
+ "actions": {
+ "Append_to_array_variable_2": {
+ "type": "AppendToArrayVariable",
+ "inputs": {
+ "name": "DateArray 2",
+ "value": "@items('Apply_to_each_2')['HolidayDate']"
+ },
+ "metadata": {
+ "operationMetadataId": "d26bdb14-39d1-4101-ae7a-a9009804c6e0"
+ }
+ }
+ },
+ "runAfter": {
+ "Parse_JSON_2": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "1e73e2a0-752b-417b-84f4-6fca54c123dc"
+ }
+ }
+ }
+ },
+ "templateName": null
+ },
+ "schemaVersion": "1.0.0.0"
+}
\ No newline at end of file
diff --git a/samples/last-working-day/sourcecode/[Content_Types].xml b/samples/last-working-day/sourcecode/[Content_Types].xml
new file mode 100644
index 00000000..70428b99
--- /dev/null
+++ b/samples/last-working-day/sourcecode/[Content_Types].xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/samples/last-working-day/sourcecode/customizations.xml b/samples/last-working-day/sourcecode/customizations.xml
new file mode 100644
index 00000000..ff088177
--- /dev/null
+++ b/samples/last-working-day/sourcecode/customizations.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+ /Workflows/Getlastworkingday-A5C4A221-D247-EF11-A316-6045BD3EA090.json
+ 1
+ 0
+ 5
+ 0
+ 4
+ 0
+ 0
+ 0
+ 0
+ 0
+ 1
+ 2
+ 1
+ 1
+ 1.0.0.0
+ 1
+ 0
+ 1
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SharePoint
+ /providers/Microsoft.PowerApps/apis/shared_sharepointonline
+ 1
+ 0
+ 1
+
+
+
+ 1033
+
+
\ No newline at end of file
diff --git a/samples/last-working-day/sourcecode/solution.xml b/samples/last-working-day/sourcecode/solution.xml
new file mode 100644
index 00000000..8e0ca3da
--- /dev/null
+++ b/samples/last-working-day/sourcecode/solution.xml
@@ -0,0 +1,84 @@
+
+
+ Getthelastworkingday
+
+
+
+
+ 1.0.0.2
+ 0
+
+ Theta
+
+
+
+
+
+
+ cc
+ 12144
+
+
+ 1
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+ 2
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file