-
Learn the Basics
-
- Adding Cards to MyBoard
- Adding Users to Boards
- Board General Info
- Board Settings
- Boards in KanBo
- Closing and Restoring Boards
- Creating Boards
- Deleting Boards
- Duplicating Boards
- Following Boards
- Moving Boards between Different KanBo Environments
- MyBoard
- Personal and Shared Board View
- Removing Cards from MyBoard
- Renaming Boards
-
-
- Attaching and Detaching Documents in Cards
- Board Documents
- Card Documents
- Co-Authoring
- Deleting Documents
- Document References
- Document Sources
- Downloading Documents
- Editing Documents
- Editing Documents in Browser
- Editing Documents in Office Applications
- Renaming Documents
- Uploading or Creating Documents in Cards
-
Visualize Work
-
Collaborate
-
Level Up Your Work
-
Work Securely
-
Integrations
-
- Advanced KanBo Actions in Power Automate
- Creating a KanBo Board Attached to a Subfolder Created by Power Automate
- Creating Document Folders in Document Libraries Created by KanBo with Power Automate
- Exporting Board Views to Excel
- KanBo and Azure Logic Apps Integration
- Power Automate Integration: Triggers and Actions
- Seamless Import from Microsoft Planner to KanBo
- Synchronizing KanBo with Outlook Calendar and Outlook Tasks
- Using the KanBo Outlook App
-
-
Konzept der Ansichten
-
Kartenstatus
Creating a KanBo Board Attached to a Subfolder Created by Power Automate
The “Add Board” now has a new variable called “Folder path”, which allows to specify the folder that will become the Board’s default Document Source.
Here is how to automate it using Power Automate:
- Configure your “Create new folder” SharePoint action

In this case, we want to create a new subfolder inside the “gogreenproject” folder called “solarplant” in a site collection with a name “SaveThePlanet”. This “solarplant” folder will become the default Document Source – the Board will see only documents contained by that folder and below.
KanBo’s “Add Board” action takes in the folder path with a slash (“/”) at the beginning, which means that we will have to transform the output of the SharePoint Power Automate action.
To do that, we will need to initialize three variables.
- Initialize three variables.
First variable:

Here, we need a String variable called “Path”. We need to add dynamic content from SharePoint to the variable called “Full Path”
Second variable:

Here we will need an Integer variable called PathLength. We will need to use an expression here for value. Please copy the code excerpt below:
length(variables('Path'))
Third variable:

Here we will need an Integer variable, with the name “IndexOfSlash”. The expression here should be:
indexOf(variables('Path'),'/')
Now you are ready for further steps.
- Configure the “Add Board” action

Type in the name of the Board, choose the Board color and the Board language. These variables are up to Your personal choice.
The important variables here are the “O365 Group GUID” and the “Folder path”.
For the “O365 Group GUID”, paste the ID of the O365 Group associated with the SharePoint site collection specified in the “Create new folder” action.
For the Folder path, paste in this expression (mark it and copy/paste it):
substring(variables('Path'),variables('IndexOfSlash'),sub(variables('PathLength'),variables('IndexOfSlash')))
Once the Power Automate action “Add Board” is executed, you will find a new Board that is attached to the subfolder of your choice.
If you set a Board Template in the parameters of the "Add Board" Power Automate action and if the Board Template, you have selected has a folder structure and files included, then it will create that folder structure and files below the subfolder you have provided for the default Document Source.

Was this article helpful?
Please, contact us if you have any additional questions.