Book Image

Microsoft 365 Fundamentals Guide

By : Gustavo Moraes, Douglas Romao
Book Image

Microsoft 365 Fundamentals Guide

By: Gustavo Moraes, Douglas Romao

Overview of this book

With its extensive set of tools and features for improving productivity and collaboration, Microsoft 365 is being widely adopted by organizations worldwide. This book will help not only developers but also business people and those working with information to discover tips and tricks for making the most of the apps in the Microsoft 365 suite. The Microsoft 365 Fundamentals Guide is a compendium of best practices and tips to leverage M365 apps for effective collaboration and productivity. You'll find all that you need to work efficiently with the apps in the Microsoft 365 family in this complete, quick-start guide that takes you through the Microsoft 365 apps that you can use for your everyday activities. You'll learn how to boost your personal productivity with Microsoft Delve, MyAnalytics, Outlook, and OneNote. To enhance your communication and collaboration with teams, this book shows you how to make the best use of Microsoft OneDrive, Whiteboard, SharePoint, and Microsoft Teams. You'll also be able to be on top of your tasks and your team's activities, automating routines, forms, and apps with Microsoft Planner, To-Do, Power Automate, Power Apps, and Microsoft Forms. By the end of this book, you'll have understood the purpose of each Microsoft 365 app, when and how to use it, and learned tips and tricks to achieve more with M365.
Table of Contents (18 chapters)

Adding comments

If you are a "citizen-developer," or a person that came from the business side of things into the low-code development world, maybe the word "comments" does not mean anything to you now, but hopefully, it will make more sense in the paragraphs that follow.

On the other hand, if you are already a developer, you might know that having comments all over your code will make it easier for you and your team to identify and understand what is happening in that piece of code, which makes it easier for somebody to maintain it.

Adding comments to your functions is easy in Power Apps and can be done on the formula bar by using either two forward slashes or a forward slash with an asterisk right after and a forward slash with an asterisk right before, like this:

Figure 12.20 – An example of adding a comment to your app

Important Note

If we use // to add comments, it will consider only the line that you are at, at that...