cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
martinav
Community Champion
Community Champion

Smartsheet Connector Syntax & General Usage

I see that there is a Smartsheet preview connector.  I have the simple desire to read a sheet, and possibly update it.  At this point, I hav not had any success in getting anything out of it.  However, I have had success assigning what I think is a sheet to a gallery, but it does not provide expected datacards.  Any ideas on this??

 

Here is how I have it setup:

 

image.png

In the item control for a table or gallery:

Smartsheet.GetSheet(9999999999)

I get what looks like some properties or metadata, but no actual data.  The resulting table is also blank.  My Smartsheet has several hundred rows.

 

Here are the datacards.  None of these titles are my actual data.

 

image.pngf

 

Using this for items:

 

Smartsheet.GetColumns(99999999999999)

This gets a single datacard (there is also nothing populated):

 

image.png

2 ACCEPTED SOLUTIONS

Accepted Solutions

Hi @martinav ,

Based on the issue that you mentioned, and the issue is confirmed on my side.

 

If you want to retrieve rows from the Excel sheet stored in your smartsheet workspace, I afraid that there is no way to achieve your needs in PowerApps currently.

Currently, there is no action supported under the Smartsheet connector to be able to retrieve rows from a specific Excel sheet stored in a smartsheet.

 

If you would like this feature to be added in PowerApps, please submit an idea to PowerApps Ideas Forum:

https://powerusers.microsoft.com/t5/PowerApps-Ideas/idb-p/PowerAppsIdeas

 

As an alternative solution, I think the combination of MS Flow and PowerApps could achieve your needs. You could consider configure a flow (MS Flow) on your side, within this flow, send a HTTP request to your Smartsheet API to retrieve data from your specific Excel sheet. Then return the retrieved data back to your app.6.JPG

More details about Smartsheet api to retrieve rows from a Excel sheet, please check the following article:

https://smartsheet-platform.github.io/api-docs/?shell#get-sheet 

More details about setting up an Access Token within your Smartsheet, please check the following screenshot:5.JPG

 

You could add a connection within your app to connect to the flow created above, then fire the flow from your app. You could add a button in your app, set the OnSelect property to following:

ClearCollect(RetrievedRecords, 'FlowName'.Run())

when you press the button, the related Excel sheet data would be collected into the RetrievedRecords Collection.

 

Please check and see if the following blog would help in your scenario (Returning table value from a flow back to a canvas app):

https://powerapps.microsoft.com/en-us/blog/return-an-array-from-flow-to-powerapps-response-method/

Firing a flow from an app, please refer to the following video:

https://www.youtube.com/watch?v=1wl9AtxWdkg

 

Best regards,

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

I reformulated this post into a different question, now that I know more of how to ask it properly...

 

https://powerusers.microsoft.com/t5/Building-Flows/Getting-data-from-a-nested-JSON-file/m-p/395305/h...

 

This post can be ended.

View solution in original post

7 REPLIES 7
martinav
Community Champion
Community Champion

I found something.  

 

I was able to get the column names.  its found by using this in the table items control:

 

Smartsheet.GetColumns(99999999999).data

This resulted in getting the actual column names.  Now, how do you get to the data?

 

image.png

Hi @martinav ,

Based on the issue that you mentioned, and the issue is confirmed on my side.

 

If you want to retrieve rows from the Excel sheet stored in your smartsheet workspace, I afraid that there is no way to achieve your needs in PowerApps currently.

Currently, there is no action supported under the Smartsheet connector to be able to retrieve rows from a specific Excel sheet stored in a smartsheet.

 

If you would like this feature to be added in PowerApps, please submit an idea to PowerApps Ideas Forum:

https://powerusers.microsoft.com/t5/PowerApps-Ideas/idb-p/PowerAppsIdeas

 

As an alternative solution, I think the combination of MS Flow and PowerApps could achieve your needs. You could consider configure a flow (MS Flow) on your side, within this flow, send a HTTP request to your Smartsheet API to retrieve data from your specific Excel sheet. Then return the retrieved data back to your app.6.JPG

More details about Smartsheet api to retrieve rows from a Excel sheet, please check the following article:

https://smartsheet-platform.github.io/api-docs/?shell#get-sheet 

More details about setting up an Access Token within your Smartsheet, please check the following screenshot:5.JPG

 

You could add a connection within your app to connect to the flow created above, then fire the flow from your app. You could add a button in your app, set the OnSelect property to following:

ClearCollect(RetrievedRecords, 'FlowName'.Run())

when you press the button, the related Excel sheet data would be collected into the RetrievedRecords Collection.

 

Please check and see if the following blog would help in your scenario (Returning table value from a flow back to a canvas app):

https://powerapps.microsoft.com/en-us/blog/return-an-array-from-flow-to-powerapps-response-method/

Firing a flow from an app, please refer to the following video:

https://www.youtube.com/watch?v=1wl9AtxWdkg

 

Best regards,

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-xida-msft ,

 

Thanks for the ideas.  I think doing the flow option would just take too long.  I cant afford to dump the full smartsheet into a collection either.  I do that for other things, but for this, i dont think it will be possible.  I need something quick to lookup.

 

I do have to ask.  If you cannot pull data from the smartsheet, for what purpose is the powerapps connector??  I see no practical use.  Is it only good for discussions??

 

I find it very odd that there are functions to add rows, but not the fundamental of getting data out of it.  

 

Is this planned??  It is preview, so i suppose that can mean that everything isnt there yet.  However, getting data from the sheet seems like the minimum fundamental thing.

@v-xida-msft ,

 

I decided to go ahead and give this a try.  I have found a way that I can use the data provided in this manner.  I am familiar with this method to convert array information to JSON, then pass it back to PA.  However, the schema that was generated by the output does not appear to have anything that can be parsed by PA.  I cannot even use Filter array to get anything useful.  The array dumped by the HTML action simply does not seem to have the proper format to use this method, unless I'm missing something.

 

To explain what I did, I did a test run of my flow, took the output form the HTML action, then duped that into the "use sample payload to generate schema" box.  I then copied that, and pasted it into the "schema" field.  It does not error, but does not really have anything that makes sense.  I have attached the schema below:

 

{
    "type": "object",
    "properties": {
        "statusCode": {
            "type": "integer"
        },
        "headers": {
            "type": "object",
            "properties": {
                "Pragma": {
                    "type": "string"
                },
                "Vary": {
                    "type": "string"
                },
                "Keep-Alive": {
                    "type": "string"
                },
                "Connection": {
                    "type": "string"
                },
                "Transfer-Encoding": {
                    "type": "string"
                },
                "Cache-Control": {
                    "type": "string"
                },
                "Date": {
                    "type": "string"
                },
                "Content-Type": {
                    "type": "string"
                },
                "Expires": {
                    "type": "string"
                },
                "Content-Length": {
                    "type": "string"
                }
            }
        },
        "body": {
            "type": "object",
            "properties": {
                "id": {
                    "type": "integer"
                },
                "name": {
                    "type": "string"
                },
                "version": {
                    "type": "integer"
                },
                "totalRowCount": {
                    "type": "integer"
                },
                "accessLevel": {
                    "type": "string"
                },
                "effectiveAttachmentOptions": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    }
                },
                "ganttEnabled": {
                    "type": "boolean"
                },
                "dependenciesEnabled": {
                    "type": "boolean"
                },
                "resourceManagementEnabled": {
                    "type": "boolean"
                },
                "cellImageUploadEnabled": {
                    "type": "boolean"
                },
                "userSettings": {
                    "type": "object",
                    "properties": {
                        "criticalPathEnabled": {
                            "type": "boolean"
                        },
                        "displaySummaryTasks": {
                            "type": "boolean"
                        }
                    }
                },
                "permalink": {
                    "type": "string"
                },
                "createdAt": {
                    "type": "string"
                },
                "modifiedAt": {
                    "type": "string"
                },
                "isMultiPicklistEnabled": {
                    "type": "boolean"
                },
                "columns": {
                    "type": "array",
                    "items": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "integer"
                            },
                            "version": {
                                "type": "integer"
                            },
                            "index": {
                                "type": "integer"
                            },
                            "title": {
                                "type": "string"
                            },
                            "type": {
                                "type": "string"
                            },
                            "primary": {
                                "type": "boolean"
                            },
                            "validation": {
                                "type": "boolean"
                            },
                            "width": {
                                "type": "integer"
                            },
                            "systemColumnType": {
                                "type": "string"
                            }
                        },
                        "required": [
                            "id",
                            "version",
                            "index",
                            "title",
                            "type",
                            "validation",
                            "width"
                        ]
                    }
                },
                "rows": {
                    "type": "array",
                    "items": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "integer"
                            },
                            "rowNumber": {
                                "type": "integer"
                            },
                            "expanded": {
                                "type": "boolean"
                            },
                            "createdAt": {
                                "type": "string"
                            },
                            "modifiedAt": {
                                "type": "string"
                            },
                            "cells": {
                                "type": "array",
                                "items": {
                                    "type": "object",
                                    "properties": {
                                        "columnId": {
                                            "type": "integer"
                                        },
                                        "value": {
                                            "type": "string"
                                        },
                                        "displayValue": {
                                            "type": "string"
                                        }
                                    },
                                    "required": [
                                        "columnId"
                                    ]
                                }
                            },
                            "siblingId": {
                                "type": "integer"
                            }
                        },
                        "required": [
                            "id",
                            "rowNumber",
                            "expanded",
                            "createdAt",
                            "modifiedAt",
                            "cells"
                        ]
                    }
                }
            }
        }
    }
}

 

 

 

Hi @martinav ,

Yeah, this feature is planed to add within the Smartsheet connector.

 

Actually, the actions supported under the connector within PowerApps/MS Flow is based on the actions exposed through the corresponding REST API.

 

Currently, as an alternative solution, I think the solution I provided above could achieve your needs (Maybe it's every complicated). Please consider take a try with it, then check if it could help in your scenario.

 

If would like this feature to be improved within the Smartsheet connector, you could consider submit an idea in PowerApps/MS Flow Ideas Forum, which would help Product Team to improve this feature.

 

Best regards,

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-xida-msft ,

 

I did consider your method.  That was why I posted a reply.  The data returned by the HTTP action is not in a format that can be digested into an array.  As you see, the JSON scheme (posted earlier) by the data for the RESPONSE  action is not proper to build an array table.  If I did not do what you recommended, please show me where I err.

 

THank you.

 

To help this a little:

 

I took the output from the HTTP action, and formatted it a bit to show the syntax:

 

{"statusCode":200,"headers":{"Pragma":"no-cache","Vary":"Accept-Encoding","Keep-Alive":"timeout=5, max=30","Connection":"Keep-Alive","Transfer-Encoding":"chunked","Cache-Control":"no-store, must-revalidate, no-cache","Date":"Tue, 29 Oct 2019 20:42:06 GMT","Content-Type":"application/json; charset=UTF-8","Expires":"0","Content-Length":"1249737"},"body":{"id":4549752307115908,

"name":"MASTER DRAWING LIST","version":289,"totalRowCount":2274,"accessLevel":"ADMIN","effectiveAttachmentOptions":["DROPBOX","FILE","GOOGLE_DRIVE","BOX_COM","EVERNOTE","ONEDRIVE","LINK","EGNYTE"],"ganttEnabled":false,"dependenciesEnabled":false,"resourceManagementEnabled":false,"cellImageUploadEnabled":true,

"userSettings":{"criticalPathEnabled":false,"displaySummaryTasks":true},"permalink":"https://app.smartsheet.com/sheets/VP3W8jGmP7r3j43mMqC7VFwJ5hWmRCQFC556GX51","createdAt":"2017-01-10T14:54:30Z","modifiedAt":"2019-10-28T18:38:05Z","isMultiPicklistEnabled":true,

"columns":[
{"id":3898437847541636,"version":0,"index":0,"title":"DRAWING #","type":"TEXT_NUMBER","primary":true,"validation":false,"width":171},
{"id":8402037474912132,"version":0,"index":1,"title":"DESCRIPTION","type":"TEXT_NUMBER","validation":false,"width":599},{"id":1083688080435076,"version":0,"index":2,"title":"NOTES","type":"TEXT_NUMBER","validation":false,"width":575},
{"id":3796166086289284,"version":0,"index":3,"title":"LAST UPDATED","type":"DATETIME","systemColumnType":"MODIFIED_DATE","validation":false,"width":150},{"id":8299765713659780,"version":0,"index":4,"title":"LAST UPDATED BY","type":"CONTACT_LIST","systemColumnType":"MODIFIED_BY","validation":false,"width":213}
],

"rows":[
{"id":818468139362180,"rowNumber":1,"expanded":true,"createdAt":"2017-01-10T14:54:30Z","modifiedAt":"2019-01-22T14:55:44Z",

"cells":[
{"columnId":3898437847541636},
{"columnId":8402037474912132,"value":"JS75 General Arrg.","displayValue":"JS75 General Arrg."},
{"columnId":1083688080435076},
{"columnId":3796166086289284,"value":"2019-01-22T14:55:44Z"},
{"columnId":8299765713659780,"value":"teresa@kelsotech.com","displayValue":"teresa@kelsotech.com"}
]},

{"id":3070267953047428,

"rowNumber":2,"siblingId":818468139362180,"expanded":true,"createdAt":"2017-01-10T14:54:30Z","modifiedAt":"2018-09-26T20:46:35Z",

"cells":[
{"columnId":3898437847541636,"value":201013.0,"displayValue":"201013"},
{"columnId":8402037474912132,"value":"JS75S PRV  Dwg. 72784-2-1","displayValue":"JS75S PRV  Dwg. 72784-2-1"},
{"columnId":1083688080435076},{"columnId":3796166086289284,"value":"2017-01-10T14:54:30Z"},
{"columnId":8299765713659780,"value":"neisler@kelsotech.com","displayValue":"neisler@kelsotech.com"}
]},

{"id":7573867580417924,
"rowNumber":3,"siblingId":3070267953047428,"expanded":true,"createdAt":"2017-01-10T14:54:30Z","modifiedAt":"2018-07-03T18:25:56Z",

"cells":[{"columnId":3898437847541636,"value":201015.0,"displayValue":"201015"},
{"columnId":8402037474912132,"value":"JS75S316 General Arrg.","displayValue":"JS75S316 General Arrg."},
{"columnId":1083688080435076},{"columnId":3796166086289284,"value":"2017-01-10T14:54:30Z"},
{"columnId":8299765713659780,"value":"neisler@kelsotech.com","displayValue":"neisler@kelsotech.com"}
]},

 

I can see the pattern there, and I see my data.  I'm not sure this is in a format for a JSON scheme.  Or, is it?  That is the question.

 

I did a Parse JSON action just to look at the output after JSON parsing... The data now looks like this:

 

{"body":{"id":4549752307115908,

"name":"MASTER DRAWING LIST","version":289,"totalRowCount":2274,"accessLevel":"ADMIN","effectiveAttachmentOptions":["DROPBOX","FILE","GOOGLE_DRIVE","BOX_COM","EVERNOTE","ONEDRIVE","LINK","EGNYTE"],"ganttEnabled":false,"dependenciesEnabled":false,"resourceManagementEnabled":false,"cellImageUploadEnabled":true,

"userSettings":{"criticalPathEnabled":false,"displaySummaryTasks":true},"permalink":"https://app.smartsheet.com/sheets/VP3W8jGmP7r3j43mMqC7VFwJ5hWmRCQFC556GX51","createdAt":"2017-01-10T14:54:30Z","modifiedAt":"2019-10-28T18:38:05Z","isMultiPicklistEnabled":true,

"columns":[
{"id":3898437847541636,"version":0,"index":0,"title":"DRAWING #","type":"TEXT_NUMBER","primary":true,"validation":false,"width":171},
{"id":8402037474912132,"version":0,"index":1,"title":"DESCRIPTION","type":"TEXT_NUMBER","validation":false,"width":599},
{"id":1083688080435076,"version":0,"index":2,"title":"NOTES","type":"TEXT_NUMBER","validation":false,"width":575},
{"id":3796166086289284,"version":0,"index":3,"title":"LAST UPDATED","type":"DATETIME","systemColumnType":"MODIFIED_DATE","validation":false,"width":150},
{"id":8299765713659780,"version":0,"index":4,"title":"LAST UPDATED BY","type":"CONTACT_LIST","systemColumnType":"MODIFIED_BY","validation":false,"width":213}
],

"rows":[{"id":818468139362180,"rowNumber":1,"expanded":true,"createdAt":"2017-01-10T14:54:30Z","modifiedAt":"2019-01-22T14:55:44Z",

"cells":[
{"columnId":3898437847541636},
{"columnId":8402037474912132,"value":"JS75 General Arrg.","displayValue":"JS75 General Arrg."},
{"columnId":1083688080435076},
{"columnId":3796166086289284,"value":"2019-01-22T14:55:44Z"},
{"columnId":8299765713659780,"value":"teresa@kelsotech.com","displayValue":"teresa@kelsotech.com"}
]},

{"id":3070267953047428,

"rowNumber":2,"siblingId":818468139362180,"expanded":true,"createdAt":"2017-01-10T14:54:30Z","modifiedAt":"2018-09-26T20:46:35Z",

"cells":[
{"columnId":3898437847541636,"value":201013.0,"displayValue":"201013"},
{"columnId":8402037474912132,"value":"JS75S PRV  Dwg. 72784-2-1","displayValue":"JS75S PRV  Dwg. 72784-2-1"},
{"columnId":1083688080435076},
{"columnId":3796166086289284,"value":"2017-01-10T14:54:30Z"},
{"columnId":8299765713659780,"value":"neisler@kelsotech.com","displayValue":"neisler@kelsotech.com"}]},

{"id":7573867580417924,

"rowNumber":3,"siblingId":3070267953047428,"expanded":true,"createdAt":"2017-01-10T14:54:30Z","modifiedAt":"2018-07-03T18:25:56Z",

"cells":[
{"columnId":3898437847541636,"value":201015.0,"displayValue":"201015"},{"columnId":8402037474912132,"value":"JS75S316 General Arrg.","displayValue":"JS75S316 General Arrg."},{"columnId":1083688080435076},
{"columnId":3796166086289284,"value":"2017-01-10T14:54:30Z"},
{"columnId":8299765713659780,"value":"neisler@kelsotech.com","displayValue":"neisler@kelsotech.com"}]},

 

It looks like my data is in the area "cells".  

 

I dont know how to handle this.  It looks liek a Select action is in order, but I cannot figure the syntax.  Seems like it would be a nested situation.  I have tried several different ways, all tell me that the data is an Object, and it is expecting an Array.

 

Please advise.

I reformulated this post into a different question, now that I know more of how to ask it properly...

 

https://powerusers.microsoft.com/t5/Building-Flows/Getting-data-from-a-nested-JSON-file/m-p/395305/h...

 

This post can be ended.

Helpful resources

Announcements

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip: Community User Groups

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: Community User Groups and YOU Being part of, starting, or leading a User Group can have many great benefits for our community members who want to learn, share, and connect with others who are interested in the Microsoft Power Platform and the low-code revolution.   When you are part of a User Group, you discover amazing connections, learn incredible things, and build your skills. Some User Groups work in the virtual space, but many meet in physical locations, meaning you have several options when it comes to building community with people who are learning and growing together!   Some of the benefits of our Community User Groups are: Network with like-minded peers and product experts, and get in front of potential employers and clients.Learn from industry experts and influencers and make your own solutions more successful.Access exclusive community space, resources, tools, and support from Microsoft.Collaborate on projects, share best practices, and empower each other. These are just a few of the reasons why our community members love their User Groups. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started.For current or new User Group leaders, all the information you need is here: User Group Leader Get Started GuideOnce you've kicked off your User Group, find the resources you need:  Community User Group ExperienceHave questions about our Community User Groups? Let us know! We are here to help you!

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!  

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

April 4th Copilot Studio Coffee Chat | Recording Now Available

Did you miss the Copilot Studio Coffee Chat on April 4th? This exciting and informative session with Dewain Robinson and Gary Pretty is now available to watch in our Community Galleries!   This AMA discussed how Copilot Studio is using the conversational AI-powered technology to aid and assist in the building of chatbots. Dewain is a Principal Program Manager with Copilot Studio. Gary is a Principal Program Manager with Copilot Studio and Conversational AI. Both of them had great insights to share with the community and answered some very interesting questions!     As part of our ongoing Coffee Chat AMA series, this engaging session gives the Community the unique opportunity to learn more about the latest Power Platform Copilot plans, where we’ll focus, and gain insight into upcoming features. We’re looking forward to hearing from the community at the next AMA, so hang on to your questions!   Watch the recording in the Gallery today: April 4th Copilot Studio Coffee Chat AMA

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.   Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.           Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Top Solution Authors
Top Kudoed Authors
Users online (5,698)