cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
seraph787
Advocate III
Advocate III

Sort Gallery by One of Many Dates based on Priority of date and Exclusion fields

I'm trying to do something that in PowerApps that I can do quite simply in Excel, but as I keep trying, it seems it gets more and more complex.

 

I have 6 different date fields that I need to use to sort my gallery. These dates are stored in Excel with the entire columns formated as a Date "*3/14/1999". The names of these fields are: 'BLS', 'ACLS', 'MDL', 'ProvExp', 'PrivExp', 'taskFU-Date'

 

  • I also need it to ignore some of these based off of whether the T/F value in 'tBLS', 'tMDL', and 'tPriv' field values are "True" or "False".
  • I need to have it compare these dates in a very nested format as well.
  • I created 3 labels where any True value returns the 'taskFU-Date' - the false values return as noted below:

In the first label,  if it's False, then it will find the newest date between 'BLS' and 'ACLS'

 

DateValue(If(ThisItem.tBLS="True","",If(ThisItem.ACLS>ThisItem.BLS,ThisItem.ACLS,ThisItem.BLS)))

In the second label, if it's false, then pass on the 'MDL' date.

 

DateValue(If(ThisItem.tMDL="True","",ThisItem.'MDL'))

3rd Label: If it's false, then find the oldest date between PrivExp and ProvExp.

 

Text(If(ThisItem.tPriv="True",ThisItem.'taskFU-Date',If(ThisItem.pExp>ThisItem.pProvExp,ThisItem.pProvExp,ThisItem.pExp)),ShortDate)

 

Now I'd like to create a 4th label that finds the oldest date from all of these but I can't get it to work

  • using If() statements (it says it expects # values)
  • I try with DateDiff() but it expects date values and I've tried forcing it to render as a date value via
    • Text(variable,ShortDate)
    • DateValue()
    • DateTimeValue()
    • Value()
    • Whatever I do, it's not a compatible format.

Am I overthinking it or am I not using the right tools for this?


My hope is to use the final date produced from this to sort my gallery.

 

---------------------------- Additional info requested by TheMexican

 

Okay, here is some stripped down data.

 

IDMDLBLSACLSPrivExpProvExptaskFU-DatetBLStPrivtMDLrBLSrPrivrMDLrFinalSortDate
646/30/201912/1/20185/1/20194/6/2018 5/1/2018FALSETRUEFALSE5/1/20195/1/20186/30/20195/1/2018
705/31/20187/1/2019 6/21/2018 5/1/2018FALSETRUEFALSE7/1/20195/1/20185/31/20185/1/2018
1712/31/20192/1/2016 6/21/2018 5/1/2018FALSETRUEFALSE2/1/20165/1/201812/31/20192/1/2016
719/30/20193/1/2018 10/11/2018 4/19/2018TRUEFALSEFALSE4/19/201810/11/20189/30/20194/19/2018
545/31/20209/1/2019 10/11/2018  FALSEFALSEFALSE9/1/201910/11/20185/31/202010/11/2018
4012/31/201911/1/2018 12/7/2018  FALSEFALSEFALSE11/1/201812/7/201812/31/201911/1/2018
149/30/20184/1/2019 1/19/20195/28/20184/28/2018FALSETRUEFALSE4/1/20194/28/20189/30/20184/28/2018
3211/30/20175/31/2019 11/28/2019  FALSEFALSEFALSE5/31/201911/28/201911/30/201711/30/2017
284/30/20195/1/2019 1/19/20197/24/20186/24/2018FALSETRUEFALSE5/1/20196/24/20184/30/20196/24/2018
574/30/202012/1/201812/1/20181/19/2019  FALSEFALSEFALSE12/1/20181/19/20194/30/202012/1/2018
594/30/202011/1/2019 3/16/2019  FALSEFALSEFALSE11/1/20193/16/20194/30/20203/16/2019
585/31/20189/1/2018 5/5/2019  FALSEFALSEFALSE9/1/20185/5/20195/31/20185/31/2018
747/31/20182/1/2018 5/5/2019 4/19/2018TRUEFALSEFALSE4/19/20185/5/20197/31/20184/19/2018
727/31/20187/1/2018 5/5/2019 7/1/2018TRUEFALSEFALSE7/1/20185/5/20197/31/20187/1/2018
393/31/201911/1/2019 9/27/2019  FALSEFALSEFALSE11/1/20199/27/20193/31/20193/31/2019
569/30/20198/1/2018 5/5/2019  FALSEFALSEFALSE8/1/20185/5/20199/30/20198/1/2018
755/31/20194/1/2018 5/9/2019 4/19/2018TRUEFALSEFALSE4/19/20185/9/20195/31/20194/19/2018

 

For the purposes of visualizing this data here in my post, I put the dates that match the last column in red.

 

The last FOUR columns are the formula columns I was using in excel (but for the purposes of PowerApps, I had to remove them because my app wouldn't read the table if it had formulas in any fields).  The formulas for the last 4 columns were:

  • 'rBLS'  =IF([@tBLS]=TRUE,[@[taskFU-Date]],MAX([@BLS],[@ACLS]))
  • 'rPriv' =IF([@tPriv]=TRUE,[@[taskFU-Date]],MIN([@PrivExp],[@ProvExp]))
  • 'MDL' =IF([@tMDL]=TRUE,[@[taskFU-Date]],[@MDL])
  • 'rFinalSortDate' =MIN([@rBLS],[@rPriv],[@rMDL])

I then sorted my table by 'rFinalSortDate'.

 

Final Result: In PowerApps, I'd like to sort my Gallery by that final sort date (but I have to find a way to make all the calculations that I was doing with Excel Formulas).

1 ACCEPTED SOLUTION

Accepted Solutions

Have you tried nesting the AddColumns. The inner AddColumns would create the first three column then the outter AddColumns would create the 4th column which uses the first three columns. Since the 4th column is created in the outter AddColumns the inner columns that were created should be available to use.

 

SortByColumns(
  AddColumns(
    AddColumns(
        providerTable,
        "calcBLS",Text(If(tBLS="True",'taskFU-Date',If(BLS > ACLS,If(IsBlank(BLS),ACLS,BLS),If(IsBlank(ACLS),BLS,ACLS))),ShortDate),
        "calcMDL",Text(If(tMDL="False",'CA-MD-Lic-Exp','taskFU-Date'),ShortDate),
        "calcPriv",Text(If(tPriv="True",'taskFU-Date',If(pExp<pProvExp, If(IsBlank(pProvExp),pExp,pProvExp),If(IsBlank(pExp),pProvExp,pExp))),ShortDate)
    ),
	"calcMain",If(DateValue(Text(calcBLS,ShortDate),"en-US")>DateValue(Text(calcMDL,ShortDate),"en-US"),
	        If(DateValue(Text(calcMDL,ShortDate),"en-US")>DateValue(Text(calcPriv,ShortDate),"en-US"),DateValue(Text(calcPriv,ShortDate),"en-US"),DateValue(Text(calcMDL,ShortDate),"en-US")),
	        If(DateValue(Text(calcBLS,ShortDate),"en-US")>DateValue(Text(calcPriv,ShortDate),"en-US"),DateValue(Text(calcPriv,ShortDate),"en-US"),DateValue(Text(calcBLS,ShortDate),"en-US")))
  ),
  "calcMain",
  Ascending
)


--------------------------------------------------------------------------------
If this post helps answer your question, please click on “Accept as Solution” to help other members find it more quickly. If you thought this post was helpful, please give it a Thumbs Up.

View solution in original post

8 REPLIES 8
Anonymous
Not applicable

Hi seraph77, it would be very helpful for all of us to get a sample of how the data is stored in your Excel (It doesn't have to be real data) and what end result you want. Sometimes it is really hard to follow what you want with words.

for example:

Data source has 9At least 5 or 6 rows):

ACLS  MDL   ProvExp          PrivExp              taskFU-Date

09/23/2017   08/23/2017      07/12/2019        11/12/2018

...

....

 

and then I want this result:

ACLS

09/23/2017

07/12/2018

 

This way we can all visualize your data and see what kind of result you need.

 

Hi TheMexican,

I've updated the original post with the additional data.

 
Anonymous
Not applicable

Hi Seraph787, here are the formulas I came up with:

To calculate rBLS in your Gallery: 

DateValue(If(ThisItem.tBLS="TRUE",ThisItem.'taskFU-Date',DateValue(ThisItem.BLS) > DateValue(ThisItem.ACLS),ThisItem.BLS,ThisItem.ACLS),"en-US")

To calculate rMDL:

DateValue(If(ThisItem.tMDL="FALSE",ThisItem.MDL,ThisItem.'taskFU-Date'),"en-US")

To calculate rPriv

DateValue(If(ThisItem.tPriv="TRUE",ThisItem.'taskFU-Date',DateValue(ThisItem.PrivExp)>DateValue(ThisItem.ProvExp),ThisItem.ProvExp,ThisItem.PrivExp),"en-US")

I ran out of time at work, but I will check out your last label (4th) tomorrow.

Hi TheMexican,

 

Thanks for this! 

 

I am really eager to try this but there's an issue with my account that has essentially locked me out of accessing PowerApps for the past two days.  One of the Microsoft folks is helping me out with it.  Crossing my fingers it gets resolved soon so I can try these!

Okay I've been able to get back in and try those.

 

I made a lot of headway with a few tweaks here and there.  When I went to create the 4th label, I got pretty close.. close enough to try sorting by the 4th label.  Except that's when I realized that no matter what I tried, I can't sort by a label. 

 

So I did some more digging and found a Post by Jeff_Thorpe for a similar issue (I think getting this far prompted me to try some different variations of the forum searches I had done before). Although his specific answer wasn't marked as the accepted solution because of one minor fix needed below, it seems like it's exactly what I need.  So I set out to do the calculations right inside the Gallery Items field.

 

What I decided was that I need to do four calculations there, the three that you helped me with earlier + plus one more to do the final calculations based on those three.

 

SortByColumns(
    AddColumns(
        providerTable,
        "calcBLS",Text(If(tBLS="True",'taskFU-Date',If(BLS > ACLS,If(IsBlank(BLS),ACLS,BLS),If(IsBlank(ACLS),BLS,ACLS))),ShortDate),
        "calcMDL",Text(If(tMDL="False",'CA-MD-Lic-Exp','taskFU-Date'),ShortDate),
        "calcPriv",Text(If(tPriv="True",'taskFU-Date',If(pExp<pProvExp, If(IsBlank(pProvExp),pExp,pProvExp),If(IsBlank(pExp),pProvExp,pExp))),ShortDate),
        "calcMain",If(DateValue(Text("calcBLS",ShortDate),"en-US")>DateValue(Text("calcMDL",ShortDate),"en-US"),
	        If(DateValue(Text("calcMDL",ShortDate),"en-US")>DateValue(Text("calcPriv",ShortDate),"en-US"),DateValue(Text("calcPriv",ShortDate),"en-US"),DateValue(Text("calcMDL",ShortDate),"en-US")),
	        If(DateValue(Text("calcBLS",ShortDate),"en-US")>DateValue(Text("calcPriv",ShortDate),"en-US"),DateValue(Text("calcPriv",ShortDate),"en-US"),DateValue(Text("calcBLS",ShortDate),"en-US")))
),
    "calcMain",
    Ascending)

But I am finding out something more... You can't perform the 4th calculation based on the 1st three.  In the code above, you'll see that for the 4th calculation "calcMain", I am referencing the previous columns in quotes.  I've tried this without quotes (calcBLS) with .Text (calcBLS.Text), without the Text(...,ShortDate), etc.  So the above "calcMain" was the only variant I could come up with to get it to stop the errors.  

 

Once I got to 0 errors, I went ahead and created a label in my gallery to figure out what is actually being passed through.  I should have known... it was treating the "calcBLS" and other "calcMDL", etc.  As text strings, so the label would read: calcBLS.

 

So am I right in that I can't calculate the 4th one inside the Gallery Items field?  Any other ways to calculate the 4th one and sort by it?

Have you tried nesting the AddColumns. The inner AddColumns would create the first three column then the outter AddColumns would create the 4th column which uses the first three columns. Since the 4th column is created in the outter AddColumns the inner columns that were created should be available to use.

 

SortByColumns(
  AddColumns(
    AddColumns(
        providerTable,
        "calcBLS",Text(If(tBLS="True",'taskFU-Date',If(BLS > ACLS,If(IsBlank(BLS),ACLS,BLS),If(IsBlank(ACLS),BLS,ACLS))),ShortDate),
        "calcMDL",Text(If(tMDL="False",'CA-MD-Lic-Exp','taskFU-Date'),ShortDate),
        "calcPriv",Text(If(tPriv="True",'taskFU-Date',If(pExp<pProvExp, If(IsBlank(pProvExp),pExp,pProvExp),If(IsBlank(pExp),pProvExp,pExp))),ShortDate)
    ),
	"calcMain",If(DateValue(Text(calcBLS,ShortDate),"en-US")>DateValue(Text(calcMDL,ShortDate),"en-US"),
	        If(DateValue(Text(calcMDL,ShortDate),"en-US")>DateValue(Text(calcPriv,ShortDate),"en-US"),DateValue(Text(calcPriv,ShortDate),"en-US"),DateValue(Text(calcMDL,ShortDate),"en-US")),
	        If(DateValue(Text(calcBLS,ShortDate),"en-US")>DateValue(Text(calcPriv,ShortDate),"en-US"),DateValue(Text(calcPriv,ShortDate),"en-US"),DateValue(Text(calcBLS,ShortDate),"en-US")))
  ),
  "calcMain",
  Ascending
)


--------------------------------------------------------------------------------
If this post helps answer your question, please click on “Accept as Solution” to help other members find it more quickly. If you thought this post was helpful, please give it a Thumbs Up.

It works!  This nesting solution with AddColumns is perfect for this.

 

Thank you Jeff!

 

And thank you TheMexican for helping me get the DateValues cleaned out for the first three calculations.

Helpful resources

Announcements

Take a short Community User Survey | Help us make your experience better!

To ensure that we are providing the best possible experience for Community members, we want to hear from you!    We value your feedback! As part of our commitment to enhancing your experience, we invite you to participate in a brief 15-question survey. Your insights will help us improve our services and better serve the community.   👉 Community User Survey    Thank you for being an essential part of our community!    Power Platform Engagement Team  

Tuesday Tip | How to Get Community Support

It's time for another Tuesday Tip, 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.       This Week: All About Community Support Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start.   Community Support is part of every one of our communities, accessible to all our community members.   Within each community's Community Support page, you'll find three distinct areas, each with a different focus to help you when you need support from us most. Power Apps: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pa_community_support Power Automate: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpa_community_support Power Pages: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpp_community_support Copilot Studio: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pva_community-support   Community Support Form If you need more assistance, you can reach out to the Community Team via the Community support form. Choose the type of support you require and fill in the form accordingly. We will respond to you promptly.    Thank you for being an active part of our community. Your contributions make a difference!   Best Regards, The Community Management Team

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros 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! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!

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

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