cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Syndicate_Admin
Administrator
Administrator

Dynamic link issue

Hi.

 

I wonder if anyone can help. I am working on a project, where I want to use oData feeds to retrieve data from Azure DevOps. As projects are added/removed in Azure DevOps regularly, I want to use a sharepoint list for an administrator to add the ADO organisation (there are multiple) and Area Path of the project and use the imported list in PowerBI to enerate the oData feed info to avoid havng to manually update this in the report each time. In the example, the sharepoint list is stored in table "ADO Feed Info"

 

I tried 2 options:

 

let
#"Retrieve oData" = Table.AddColumn(#"ADO Feed Info", "FeedData",
each OData.Feed ("https://analytics.dev.azure.com/" & [Azure DevOps Organisation] & "/" & Text.BeforeDelimiter([Azure DevOps Area Path],"\") & "/_odata/v3.0-preview/WorkItems?"
&"$filter=contains(Area/AreaPath,'"&[Azure DevOps Area Path]&"')"
&"and WorkItemType eq 'Product Backlog Item'"
&"&$select=WorkItemId,Title,State,Effort,OriginalEstimate,ParentWorkItemId,CreatedDate,ActivatedDate,StateChangeDate,ClosedDate,WorkItemType,TagNames"
&"&$expand="
&"Iteration($select=IterationPath),"
&"Area($select=AreaPath)"
,null, [Implementation="2.0",OmitValues = ODataOmitValues.Nulls,ODataVersion = 4])),
#"Get Column Names"= Table.ColumnNames ( Table.Combine ( #"Retrieve oData"[FeedData] ) ),
#"Expand oData" = Table.ExpandTableColumn(#"Retrieve oData","FeedData",#"Get Column Names")
in
#"Expand oData"

This pulls in the data ok in PowerBI desktop, but when publishing the report cannor be refreshed due to an "This dataset includes a dynamic data source. Since dynamic data sources aren't refreshed in the Power BI service, this dataset won't be refreshed. Learn more: https://aka.ms/dynamic-data-sources." issue. 

 

I also tried:

 

let

#"Retrieve oData" = Table.AddColumn(#"ADO Feed Info","FeedData", each OData.Feed (
Web.Contents("https://analytics.dev.azure.com",
[
RelativePath="""" & [Azure DevOps Organisation] & "/" & Text.BeforeDelimiter([Azure DevOps Area Path],"\") & "/_odata/v3.0-preview/WorkItems",
Query=[
filter="contains(Area/AreaPath,'"&[Azure DevOps Area Path]&"') and WorkItemType eq 'Product Backlog Item'",
select="WorkItemId,Title",
expand="Iteration($select=IterationPath),Area($select=AreaPath)"
]
]
),null, [Implementation="2.0",OmitValues = ODataOmitValues.Nulls,ODataVersion = 4]
)
),
#"Get Column Names"= Table.ColumnNames ( Table.Combine ( #"Retrieve oData"[FeedData] ) ),
#"Expand oData" = Table.ExpandTableColumn(#"Retrieve oData","FeedData",#"Get Column Names")
in
#"Expand oData"

 

When replacing "Web.Contents"with "VSTS.AccountContents" this requires a login and this doesn't accept the credentials (Organisational Account) and shows an error: "Null Value for Resource Path"

 

 

 

PS:

 

I also tried 

 

let

#"Retrieve oData" = Table.AddColumn(#"ADO Feed Info","FeedData", each OData.Feed (
Web.Contents("https://analytics.dev.azure.com",
[
RelativePath=[Azure DevOps Organisation] & "/" & Text.BeforeDelimiter([Azure DevOps Area Path],"\") & "/_odata/v3.0-preview/WorkItems"]
),null, [Implementation="2.0",OmitValues = ODataOmitValues.Nulls,ODataVersion = 4,
Query=[
#"$filter"="contains(Area/AreaPath,'"&[Azure DevOps Area Path]&"') and WorkItemType eq 'Product Backlog Item'",
#"$select"="WorkItemId,Title",
#"$expand"="Iteration($select=IterationPath),Area($select=AreaPath)"
]
]

)
),
#"Get Column Names"= Table.ColumnNames ( Table.Combine ( #"Retrieve oData"[FeedData] ) ),
#"Expand oData" = Table.ExpandTableColumn(#"Retrieve oData","FeedData",#"Get Column Names")
in
#"Expand oData"

This gives an error once authenticated with Organisational Credentials

ferryv_0-1637923526188.png

 

Wrapping Web.Contents in Binary.ToText

Binary.ToText(Web.Contents("https://analytics.dev.azure.com",
[
RelativePath=[Azure DevOps Organisation] & "/" & Text.BeforeDelimiter([Azure DevOps Area Path],"\") & "/_odata/v3.0-preview/WorkItems"]
))

   results in error

 

ferryv_1-1637923647847.png

 

So my queston is - How can I rewrite the query to (if possible):

- Accept organisational credentials

- Enable the report to be refreshed once published

- Enable me to see the preview

 

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Syndicate_Admin
Administrator
Administrator

I found a way around the Dynamic Link issue with power query when connected to Azure DevOps with multiple organisations.

 

For reference, the issue is that the organisation in the main URL is required for Azure DevOps connection. 

 

As a workaround, the following will work - and enables refreshing - until a better solution is in place (I hope this will help others with similar issues also):

 

  • Have a table with the organisations, area paths and index column (starting at 1 in my case)
  • Have a function that combines the web.content feeds and expad everything
  • A second function that deals with the web.content feed itself (I split them out so I can call this function for different functions.

Organisation & Area Path information

The table is called "Input" for the purposes of this explanation:

 

let
Source = Table.Combine({
Table.FromRecords({[Organisation = "OrgA", AreaPath = "Area1\Path1", Project = "Project1"]}),
Table.FromRecords({[Organisation = "OrgB", AreaPath = "Area2\Path2", Project = "Project1"]})
}),

#"Added Index" = Table.AddIndexColumn(Source, "ADO Id", 1, 1, Int64.Type)
in
#"Added Index"

Change, Add, Remove organisations, area paths, etc as applicable. It should be possible to connect it to an external source, like Excel or similar, but "... references other queries or steps, so it may not directly access a data source. Please rebuild this data combination." errors occur and I have not been able to resolve this yet.

 

The function that combines and unpacks the info 

The function is called "Unpack" for the purposes of the explanation:

(org as list, project as list, areaPath as list, index as list,optional filters as text)=>
let
fieldSelection = "WorkItemId,Title,State,OriginalEstimate,ParentWorkItemId,"
&"CreatedDate,ActivatedDate,StateChangeDate,ClosedDate,WorkItemType,TagNames,"
&"ChangedDate,CycleTimeDays,LeadTimeDays,StartDate,TargetDate",

filters = if filters = null then "" else filters,
#"Retrieve data"=
List.Generate(()=>[i=List.Min(index)-1], each [i] <List.Max(index),each [i = [i]+1], each
Table.FromRecords(
{

[

FeedData= Feed(org{[i]},project{[i]},areaPath{[i]},fieldSelection,filters),
Organisation = org{[i]},
AdoId = index{[i]}
]})),

#"Converted to Table" = Table.FromList( #"Retrieve data", Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Extract FeedData Column" = Table.ExpandTableColumn(#"Converted to Table", "Column1", {"FeedData", "Organisation", "AdoId"}, {"FeedData", "Organisation", "ADO Id"}),
#"Extract FeedData Column Records" = Table.ExpandRecordColumn(#"Extract FeedData Column", "FeedData", { "value"}, { "FeedData.values"}),
#"Expand FeedData.values Lists" = Table.ExpandListColumn( #"Extract FeedData Column Records", "FeedData.values"),
#"Remove Empty Record options" = Table.SelectRows( #"Expand FeedData.values Lists", each ([FeedData.values] <> null)),
#"Get Column Names"= Record.FieldNames ( Record.Combine ( #"Remove Empty Record options"[FeedData.values] ) ),
#"Expand Records" = Table.ExpandRecordColumn( #"Expand FeedData.values Lists", "FeedData.values", #"Get Column Names"),
#"Expand Area Path" = Table.ExpandRecordColumn(#"Expand Records", "Area", {"AreaPath"}, {"Area Path"}),
#"Expand Project Name" = Table.ExpandRecordColumn(#"Expand Area Path", "Project", {"ProjectName"}, {"Project Name"}),
#"Expand AssignedTo" = Table.ExpandRecordColumn(#"Expand Project Name", "AssignedTo", {"UserName"}, {"User Name"}),
#"Expand Iteration Path" = Table.ExpandRecordColumn(#"Expand AssignedTo" , "Iteration",{"IterationPath", "StartDate", "EndDate"}, {"Iteration Path", "Iteration Start Date", "Iteration End Date"})

in
#"Expand Iteration Path"

 Some things of note in this function:

  • org, areaPath and index are linked to the respective columns in the "Input" table (above)
  • an Optional "filters" parameter is added to enable e.g. filtering by workItemType (eg WorkItemType eq 'Initiative' to only return a subset of work items)
  • fieldSelection is added as a variable in this function on purpose, so it is easier to manage the fields that are returned and the function can be clones and appended to create a new function that retrieves different data 
  • The line "FeedData= Feed(org{[i]},areaPath{[i]},fieldSelection,filters)" calls the next function, called Feed.   

 The function that retrieves the actual content

The function is called "Feed" for the purposes of the explanation:

(org as text, project as text,areaPath as text, fieldSelection as text, filters as text)=>
let
Source = if org = "OrgA" then Json.Document( Web.Contents ("https://analytics.dev.azure.com/OrgA/_odata",[
RelativePath = "v3.0-preview/WorkItems?",
Query=[#"$filter"="(Area/AreaPath eq '"&areaPath&"' and Project/ProjectName eq '"& project &"' "& filters&")",
#"$select"= fieldSelection,
#"$expand"="Iteration($select=IterationPath,StartDate,EndDate),"
&"Area($select=AreaPath),"
&"AssignedTo($select=UserName),"
&"Project($select=ProjectName),"
]])) else

Json.Document( Web.Contents ("https://analytics.dev.azure.com/OrgB/_odata",[
RelativePath = "v3.0-preview/WorkItems?",
Query=[#"$filter"="(Area/AreaPath eq '"&areaPath&"' and Project/ProjectName eq '"& project &"' "& filters&")",
#"$select"= fieldSelection,
#"$expand"="Iteration($select=IterationPath,StartDate,EndDate),"
&"Area($select=AreaPath),"
&"AssignedTo($select=UserName),"
&"Project($select=ProjectName),"
]]))
in
Source

Some things of note:

  • The dynamic source issue seems to appear when the base URL in Web Content is a variable. So to get around this, an if statement is added to check the value of "org" (linked to the Organisation in the "Unpack" function) and based on that value, a new web.contents function is defined with a static URL. Not perfect, but it seems to work.
  • While in most documentation, the URL is to be defined as "https://analytics.dev.azure.com/{Organisation}/{Project}/_odata/...", the organisation can be added to the query string also via " Project/ProjectName eq '{ProjectName}' " (the documentation typically refers to ProjectSK instead, but cannot be easily found by an end user.
  • If new organisations are to be added, append the if statement. The new URL needs to be authenticated, so the right permissions in Azure DevOps need to be set.

The output table

For the purpose of this explanation, it's called "Result"

let
Source = Unpack(Input[Organisation], Input[Project], Input[AreaPath], Input[#"ADO Id"]," and WorkItemType eq 'Initiative'")
in
Source

You call the "Unpack function", link this to the "Input" table columns and add the filter info (here: " and WorkItemType eq 'Initiative'"). You can add any number of tables as needed in the same way

 

 

 

View solution in original post

6 REPLIES 6
Syndicate_Admin
Administrator
Administrator

have you tried folding your query into the original one instead of using Table.AddColumn as the first step?

Not sure what you mean by "the original one"? Do you mean the step prior to Table.AddColumn? Not familiar with query folding aside frm what I read to date.

 

How would I achieve it (am fairly new to M). I would need to loop through a table to find the organisation and area path info and append this to a standard Azure DevOps feed URL (https://analytics.dev.azure.com) as per https://docs.microsoft.com/en-us/azure/devops/report/powerbi/odataquery-connect?view=azure-devops, but the problem is that the org and area (first part of an area path) are dynamic and not part of the query string. 

This seems to be causing the problem with the oData feed. The Web.Contents function wants to authenticate, but needs the Azure DevOps org to be able to do this (which is dynamic) and the VSTS.AccountContents function throws a "Null value for ResourcePath" error when tryingto authenticate.  

 

I checked query folding, but didn't allow it.

 

I also tried looping through a list of URLs (both generated from a table or typed in) and using Query parameters. Looping done via list.generate. All work in desktop, but fail to refresh in powerbi.com due to dynamic query errors.

 

Seems the only option is to create a table per odata feed/web contents (with hard coded fully resolved URLs) and merge the tables afterwards, which works, but doesn't seem very efficient.

 

Any other suggestions welcome. 🙂

An example what I am trying to achieve:

 

I have a PowerBi table (ADO), which can be from Excel, a Sharepoint list or hardcoded. For example:

 

let
Source = Table.Combine({
Table.FromRecords({[Organisation = "ado-orgA", AreaPath = "Project1\Sandbox"]}),
Table.FromRecords({[Organisation = "ado-orgB", AreaPath = "Project2/Sandbox"]})
}),

#"Added Index" = Table.AddIndexColumn(Source, "Index", 1, 1, Int64.Type)
in
#"Added Index"

 Each entry in the table is a separate Azure DevOps organisation and Area Path. The base URL for the feed or web content is: "https://analytics.dev.azure.com/{organization}/{project}/_odata/v3.0-preview/WorkItems?" and the project can be derived from the area path (first path of the area path (e.g. Project1).

 

The organization and project appear to make the the URL a dynamic source and oData.Feed does not appear to be able to resolve this. So I tried the web.contents option by creating a function (Retrieve oData) and loop through the table.

 

(org as list, areapath as list,index as list)=>

let
#"Retrieve data"=
List.Generate(()=>[i=List.Min(index)-1], each [i] <List.Max(index),each [i = [i]+1], each Table.FromRecords(
{

[
FeedData =Json.Document( Web.Contents ("https://analytics.dev.azure.com/",[
RelativePath = org{[i]} &"/"
& Text.BeforeDelimiter(areapath{[i]},"\")
& "/_odata/v3.0-preview/WorkItems?",
Query=[#"$filter"="contains(Area/AreaPath,'"&areapath{[i]}&"')",
#"$select"="WorkItemId,Title,State,OriginalEstimate,ParentWorkItemId,"
&"CreatedDate,ActivatedDate,StateChangeDate,ClosedDate,"
&"WorkItemType,TagNames,ChangedDate,CycleTimeDays,"
&"LeadTimeDays,StartDate,TargetDate",
#"$expand"="Iteration($select=IterationPath,StartDate,EndDate),"
&"Area($select=AreaPath),"
&"AssignedTo($select=UserName)"
]])),
Organisation = org{[i]},
AdoId = index{[i]}
]}))

in
#"Retrieve data"

 the org, area path and index variables are linked to the respective table columns in ADO. And once linked, invoked and converted, I see the correct data in the PowerBI Desktop application.

 

I use the function as the intent is to create tables with additional filters (filter variable omitted in this instance). Also omitted the conversion, etc from the above code for clarity.

 

However, the problem arises in this case when uploading it to a workspace as the report tries to authenticate against https://analytics.dev.azure.com/, and this does not seem to allow me to add my organisational credentials.

ferryv_0-1641461571402.png

Anonymous does not enable refresh here, and usng Basic authentication results in 

ferryv_1-1641461752856.png

When adding the org in the main url instead of the relative path, the option to connect via an organisational account appears, but is not supported:

ferryv_2-1641463372893.png

When using oData.Feed instead of Web.Contents, I can connect via organisational credentials, but a Dynamic source error is shown

ferryv_3-1641463467513.png

 

 

 

 

     

Note. When ading the org, etc in the main url (as shown below), the dynamic source error from above also occurs.:

 

(org as list, areapath as list,index as list)=>

let

#"Retrieve data"=
List.Generate(()=>[i=List.Min(index)-1], each [i] <List.Max(index),each [i = [i]+1], each Table.FromRecords(
{

[
FeedData =Json.Document( Web.Contents ("https://analytics.dev.azure.com/"&org{[i]} &"/"
& Text.BeforeDelimiter(areapath{[i]},"\")
& "/_odata/",[
RelativePath = "v3.0-preview/WorkItems?",
Query=[#"$filter"="contains(Area/AreaPath,'"&areapath{[i]}&"')",
#"$select"="WorkItemId,Title,State,OriginalEstimate,ParentWorkItemId,"
&"CreatedDate,ActivatedDate,StateChangeDate,ClosedDate,"
&"WorkItemType,TagNames,ChangedDate,CycleTimeDays,"
&"LeadTimeDays,StartDate,TargetDate",
#"$expand"="Iteration($select=IterationPath,StartDate,EndDate),"
&"Area($select=AreaPath),"
&"AssignedTo($select=UserName)"
]])),
Organisation = org{[i]},
AdoId = index{[i]}
]}))

in
#"Retrieve data"

 

Syndicate_Admin
Administrator
Administrator

I found a way around the Dynamic Link issue with power query when connected to Azure DevOps with multiple organisations.

 

For reference, the issue is that the organisation in the main URL is required for Azure DevOps connection. 

 

As a workaround, the following will work - and enables refreshing - until a better solution is in place (I hope this will help others with similar issues also):

 

  • Have a table with the organisations, area paths and index column (starting at 1 in my case)
  • Have a function that combines the web.content feeds and expad everything
  • A second function that deals with the web.content feed itself (I split them out so I can call this function for different functions.

Organisation & Area Path information

The table is called "Input" for the purposes of this explanation:

 

let
Source = Table.Combine({
Table.FromRecords({[Organisation = "OrgA", AreaPath = "Area1\Path1", Project = "Project1"]}),
Table.FromRecords({[Organisation = "OrgB", AreaPath = "Area2\Path2", Project = "Project1"]})
}),

#"Added Index" = Table.AddIndexColumn(Source, "ADO Id", 1, 1, Int64.Type)
in
#"Added Index"

Change, Add, Remove organisations, area paths, etc as applicable. It should be possible to connect it to an external source, like Excel or similar, but "... references other queries or steps, so it may not directly access a data source. Please rebuild this data combination." errors occur and I have not been able to resolve this yet.

 

The function that combines and unpacks the info 

The function is called "Unpack" for the purposes of the explanation:

(org as list, project as list, areaPath as list, index as list,optional filters as text)=>
let
fieldSelection = "WorkItemId,Title,State,OriginalEstimate,ParentWorkItemId,"
&"CreatedDate,ActivatedDate,StateChangeDate,ClosedDate,WorkItemType,TagNames,"
&"ChangedDate,CycleTimeDays,LeadTimeDays,StartDate,TargetDate",

filters = if filters = null then "" else filters,
#"Retrieve data"=
List.Generate(()=>[i=List.Min(index)-1], each [i] <List.Max(index),each [i = [i]+1], each
Table.FromRecords(
{

[

FeedData= Feed(org{[i]},project{[i]},areaPath{[i]},fieldSelection,filters),
Organisation = org{[i]},
AdoId = index{[i]}
]})),

#"Converted to Table" = Table.FromList( #"Retrieve data", Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Extract FeedData Column" = Table.ExpandTableColumn(#"Converted to Table", "Column1", {"FeedData", "Organisation", "AdoId"}, {"FeedData", "Organisation", "ADO Id"}),
#"Extract FeedData Column Records" = Table.ExpandRecordColumn(#"Extract FeedData Column", "FeedData", { "value"}, { "FeedData.values"}),
#"Expand FeedData.values Lists" = Table.ExpandListColumn( #"Extract FeedData Column Records", "FeedData.values"),
#"Remove Empty Record options" = Table.SelectRows( #"Expand FeedData.values Lists", each ([FeedData.values] <> null)),
#"Get Column Names"= Record.FieldNames ( Record.Combine ( #"Remove Empty Record options"[FeedData.values] ) ),
#"Expand Records" = Table.ExpandRecordColumn( #"Expand FeedData.values Lists", "FeedData.values", #"Get Column Names"),
#"Expand Area Path" = Table.ExpandRecordColumn(#"Expand Records", "Area", {"AreaPath"}, {"Area Path"}),
#"Expand Project Name" = Table.ExpandRecordColumn(#"Expand Area Path", "Project", {"ProjectName"}, {"Project Name"}),
#"Expand AssignedTo" = Table.ExpandRecordColumn(#"Expand Project Name", "AssignedTo", {"UserName"}, {"User Name"}),
#"Expand Iteration Path" = Table.ExpandRecordColumn(#"Expand AssignedTo" , "Iteration",{"IterationPath", "StartDate", "EndDate"}, {"Iteration Path", "Iteration Start Date", "Iteration End Date"})

in
#"Expand Iteration Path"

 Some things of note in this function:

  • org, areaPath and index are linked to the respective columns in the "Input" table (above)
  • an Optional "filters" parameter is added to enable e.g. filtering by workItemType (eg WorkItemType eq 'Initiative' to only return a subset of work items)
  • fieldSelection is added as a variable in this function on purpose, so it is easier to manage the fields that are returned and the function can be clones and appended to create a new function that retrieves different data 
  • The line "FeedData= Feed(org{[i]},areaPath{[i]},fieldSelection,filters)" calls the next function, called Feed.   

 The function that retrieves the actual content

The function is called "Feed" for the purposes of the explanation:

(org as text, project as text,areaPath as text, fieldSelection as text, filters as text)=>
let
Source = if org = "OrgA" then Json.Document( Web.Contents ("https://analytics.dev.azure.com/OrgA/_odata",[
RelativePath = "v3.0-preview/WorkItems?",
Query=[#"$filter"="(Area/AreaPath eq '"&areaPath&"' and Project/ProjectName eq '"& project &"' "& filters&")",
#"$select"= fieldSelection,
#"$expand"="Iteration($select=IterationPath,StartDate,EndDate),"
&"Area($select=AreaPath),"
&"AssignedTo($select=UserName),"
&"Project($select=ProjectName),"
]])) else

Json.Document( Web.Contents ("https://analytics.dev.azure.com/OrgB/_odata",[
RelativePath = "v3.0-preview/WorkItems?",
Query=[#"$filter"="(Area/AreaPath eq '"&areaPath&"' and Project/ProjectName eq '"& project &"' "& filters&")",
#"$select"= fieldSelection,
#"$expand"="Iteration($select=IterationPath,StartDate,EndDate),"
&"Area($select=AreaPath),"
&"AssignedTo($select=UserName),"
&"Project($select=ProjectName),"
]]))
in
Source

Some things of note:

  • The dynamic source issue seems to appear when the base URL in Web Content is a variable. So to get around this, an if statement is added to check the value of "org" (linked to the Organisation in the "Unpack" function) and based on that value, a new web.contents function is defined with a static URL. Not perfect, but it seems to work.
  • While in most documentation, the URL is to be defined as "https://analytics.dev.azure.com/{Organisation}/{Project}/_odata/...", the organisation can be added to the query string also via " Project/ProjectName eq '{ProjectName}' " (the documentation typically refers to ProjectSK instead, but cannot be easily found by an end user.
  • If new organisations are to be added, append the if statement. The new URL needs to be authenticated, so the right permissions in Azure DevOps need to be set.

The output table

For the purpose of this explanation, it's called "Result"

let
Source = Unpack(Input[Organisation], Input[Project], Input[AreaPath], Input[#"ADO Id"]," and WorkItemType eq 'Initiative'")
in
Source

You call the "Unpack function", link this to the "Input" table columns and add the filter info (here: " and WorkItemType eq 'Initiative'"). You can add any number of tables as needed in the same way

 

 

 

Helpful resources

Announcements

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!     Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!     Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include 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 image below to find out more!     UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!     European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!   Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!   For more events, click the image below to visit the Microsoft Community Days website.    

Tuesday Tip | Update Your Community Profile Today!

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.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

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!  

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