I can't understand what I'm doing wrong here:
I'd like a ComboBox to either be visible or not (or I could use DisplayMode.Edit / DisplayMode.View) if another ComboBox is empty. However, it doesn't seem to work and even when I use:
If(!IsEmpty(ComboBox1.Selected),DisplayMode.View,DisplayMode.Edit) for the DisplayMode of the other ComboBox, it still seems to think that there is some content in the ComboBox even when it is actually blank / empty? This means the other ComboBox remains in VIEW mode even when the other box is blank?
Solved! Go to Solution.
.Selected is VERY viable on a ComboBox. It is not Deprecated. I believe you are thinking of SelectedText which IS deprecated and should be avoided.
But, Selected is absolutely usable and HAS to be used in many cases. If you want to know what item is selected in your ComboBox...how else would you do it? That is what .Selected is for.
Selected returns the selected record in your ComboBox.
SelectedItems returns the table of records selected IF you have multiple selections turned on.
DefaultSelectedItems is an input property to the combobox, so you cannot check it in a formula.
Like ALL controls that have an Items property as an Input, any output will present either a record or a table of records based on the schema of the Items property records.
SO...whatever columns you have in your Items property are what you would check in your formula.
The column you check is completely dependent on the schema of the Items property records!
If you had an Items property that was just ["A", "B", "C"] then this would represent a table with a Value column...and then Selected.Value would be what to check.
Your original formula is using IsEmpty. This function is well misunderstood as it is a function to test if a record or table is empty. And by empty, I mean nothing!
For example: IsEmpty(Table()) is true whereas IsEmpty(Table({})) is false
This is because the second one has a record in it. Technically it is all empty (to us), but to the IsEmpty function, it has something and is not empty.
So, when trying to do the IsEmpty function on a schema based table that is found in a SelectedItems it will always return false
Bottom-line...it is NOT the function you want to use to test with in this case.
IsBlank is what you want!
Your formula should be:
If(!IsBlank(ComboBox1.Selected.Value), DisplayMode.View, DisplayMode.Edit)
(using the .Value here based on prior comments...again, replace with the appropriate column from your items schema)
You could also use:
If(CountRows(ComboBox1.SelectedItems)>0, DisplayMode.View, DisplayMode.Edit)
Note, the first is looking at a record from the combobox. Selected will ALWAYS represent the record of the last selected item of the control.
SelectedItems is used in the second formula in which case (again, IsEmpty will not work on it) we use the CountRows to countrows of the table.
Hopefully this all makes sense and is helpful.
You should not use Selected for ComboBox
use SelectedItems instead, and do not use the Selected property of a Combo Box control, if possible
Try this instead:
//untested - adjust as needed
If(!IsEmpty(ComboBox1.SelectedItems),DisplayMode.View,DisplayMode.Edit)
or this (but the above is better):
//untested - adjust as needed
If(!IsBlank(First(ComboBox1.SelectedItems)),DisplayMode.View,DisplayMode.Edit)
Also, note:
IsEmpty is for a Table
IsBlank is for a single Record
and you should not use Selected property for ComboBox
use SelectedItems property instead for ComboBox
------------
NOTE:
Although the below may still work with Selected, I do not recommend it and I think it is deprecated
//DO NOT USE THIS, NOT RECOMMENDED
If(!IsBlank(ComboBox1.Selected),DisplayMode.View,DisplayMode.Edit)
//don't use it - this might stop working in the future
//and you shouldn't use the Selected property of a ComboBox
//use SelectedItems or DefaultSelectedItems instead
I do not recommend using Selected property of ComboBox, I think it is actually deprecated and may stop working in the future
.Selected is VERY viable on a ComboBox. It is not Deprecated. I believe you are thinking of SelectedText which IS deprecated and should be avoided.
But, Selected is absolutely usable and HAS to be used in many cases. If you want to know what item is selected in your ComboBox...how else would you do it? That is what .Selected is for.
Selected returns the selected record in your ComboBox.
SelectedItems returns the table of records selected IF you have multiple selections turned on.
DefaultSelectedItems is an input property to the combobox, so you cannot check it in a formula.
Like ALL controls that have an Items property as an Input, any output will present either a record or a table of records based on the schema of the Items property records.
SO...whatever columns you have in your Items property are what you would check in your formula.
The column you check is completely dependent on the schema of the Items property records!
If you had an Items property that was just ["A", "B", "C"] then this would represent a table with a Value column...and then Selected.Value would be what to check.
Your original formula is using IsEmpty. This function is well misunderstood as it is a function to test if a record or table is empty. And by empty, I mean nothing!
For example: IsEmpty(Table()) is true whereas IsEmpty(Table({})) is false
This is because the second one has a record in it. Technically it is all empty (to us), but to the IsEmpty function, it has something and is not empty.
So, when trying to do the IsEmpty function on a schema based table that is found in a SelectedItems it will always return false
Bottom-line...it is NOT the function you want to use to test with in this case.
IsBlank is what you want!
Your formula should be:
If(!IsBlank(ComboBox1.Selected.Value), DisplayMode.View, DisplayMode.Edit)
(using the .Value here based on prior comments...again, replace with the appropriate column from your items schema)
You could also use:
If(CountRows(ComboBox1.SelectedItems)>0, DisplayMode.View, DisplayMode.Edit)
Note, the first is looking at a record from the combobox. Selected will ALWAYS represent the record of the last selected item of the control.
SelectedItems is used in the second formula in which case (again, IsEmpty will not work on it) we use the CountRows to countrows of the table.
Hopefully this all makes sense and is helpful.
As always - a thorough and very helpful response. Thank you very much! I’ll give your suggestions a try.
Thank you!!
I really like this explanation, however I was still not sure whether or not the Selected property of a Combo Box control in particular, might be internally scheduled for eventual future deprecation
and if so that it should not be used, and here is why I might suspect this:
Since there are cases where a Combo Box may allow multiple selections, then using the Selected property would be ambiguous, because it would result in only one Record (when I checked, it works, but it picked the very last selection, though I am not sure exactly what selection it picks, whether it's the first one, last one, or even just arbitrary). In this case, the expected behavior might be for it to get all the Records, in some points of view.
That's not what I necessarily think the expected behavior of Selected should be, I think it's behaving fine.
However, if someone were to use that property Selected for a Combo Box in particular, they might get confused about the behavior of why only one Record is being returned and not a Table. In other words, perhaps some people might wonder, why is there a property Selected of a Combo Box which returns just one Record, when a Combo Box may have one or more Records - and if there are multiple records, how are they supposed know which of the selections will be chosen if they use the Selected property of a Combo Box?
The obvious answer is not to use Selected when your Combo Box allows multiple selections, as it would result in an unexpected outcome.
However, SelectedItems can be used predictably and consistently with a Combo Box control in both cases - with one selection, or multiple selections.
Instead, whether it's only one Record or multiple Records, SelectedItems is more consistent. When there's only one Record, then just use
//example formula - change ComboBoxControl to the actual name of your Combo Box control
First(ComboBoxControl.SelectedItems)
When the destination requires a Record and not a Table, they should get an error in the formula, so they will have to change the formula to use only one of the Combo Box selections explicitly, such as by using First.
However, Selected will not give any error, it will just pick one of the multiple selections. Some people may wonder, why would there be a property which would have an unexpected outcome in the case of multiple selections? Also, some people may wonder, Selected returns only one Record - does that mean - a Combo Box always returns one Record too? It might introduce ambiguity in even what a Combo Box is and whether it returns one Record or a Table from some points of view.
I personally don't really have an issue with this, however, I believe that in some points of view, this type of situation is considered problematic, specifically that: when multiple Records are expected from a Combo Box (i.e. a Table) why is there a built in property that returns just one of them (i.e. a Record), whether it's the first one, last one, or an arbitrary one?
I also noticed that the property Selected of a Combo Box control is missing entirely from the relevant official Microsoft documentation page.
In case this was not a mistake, it may mean that the property is internally being scheduled for eventual deprecation. I am aware it could be a mistake, however, I am actually unsure it is a mistake in this case, I think there is a chance that the Selected property of a Combo Box might be intentionally missing from the documentation in this case.
I suspect it could be because of what I described, and thus, the Selected property of a Combo Box control in particular might be internally scheduled for eventual deprecation for the reasons I described in this post.
The use of property Selected is not consistent with the principle that while a Combo Box may have only one selection, and often does in many cases, (such as when the SharePoint List data source's Choice column does not have Allow multiple selections toggled to Yes in the settings, and the default setting if not explicitly changed, is indeed No, so often it's just one selection in the Combo Box control that uses this column) but that it may also have multiple selections in some cases.
The Selected property on a Combo Box control introduces ambiguity on what Record is returned in the case that the Combo Box does have multiple selections.
I wanted to know if @v-jefferni , @v-bofeng-msft , or @v-xiaochen-msft could please clarify on this. Specifically, to clarify on:
1. Is it a mistake or is it intentional that the property Selected of a Combo Box control is missing entirely from the relevant official Microsoft documentation page
2. If it is intentional that the property Selected of a Combo Box control is missing from that page, is it because the Selected property of a Combo Box might be internally scheduled for eventual future deprecation?
3. If the Selected property of a Combo Box might be internally scheduled for eventual future deprecation, might it be partially because of what I just described in this post, potentially among other reasons?
4. If the Selected property of a Combo Box might be internally scheduled for eventual future deprecation, despite what @RandyHayes says being a very strong explanation (I really like it a lot personally), that maybe it is actually not a good idea to be encouraging anyone to continue to use the Selected property of a Combo Box and in that case, would it be better to go with my advice instead to simply not use the Selected property of a Combo Box and instead to use SelectedItems in all such cases, even for returning just one Record ?
So:
//example formula - change ComboBoxControl to the actual name of your Combo Box control
First(ComboBoxControl.SelectedItems)
for cases where it is known that there is going to be only one selected item in the Combo Box?
5. If it actually was a mistake that the Selected property of a Combo Box control is missing from that page, could it be clarified which Record is returned exactly, when using the Selected property of a Combo Box control that allows multiple selections - is it always the first Record, the last Record, or is it not predictable at all which Record is returned?
I wanted to know if the above could be clarified so I could have the correct understanding.
Thanks!
@RandyHayes Just tried this and it works a treat.....
*****IGNORE - I have just figured it out by using an OR statement set to check for "ThisItem.<columnName" !IsEmpty as well. Many thanks. *******
However. When the gallery writes back to the SP list, I have the ComboBox's Default Selected Items to show "ThisItem.<Column Name in SP List>". How can I also use this value as well so that the other ComboBox is in VIEW mode only? For example, when I am populating the boxes, it works a treat. However, when I return the gallery after the items have been patched back to the SP list, the combobox returns a FALSE again since it is now displaying its default seleced item, if you see what I mean?
Many thanks.
@jed76 wrote:... when I return the gallery after the items have been patched back to the SP list, the combobox returns a FALSE again since it is now displaying its default seleced item, if you see what I mean?
Many thanks.
For that check if below two threads help you identify this potential specific issue:
Combo box auto populated data not working with Patch or in email
Combo Box Selected Items - Lookup Field Issues
First, check your Form's Item property (if it's a Form). Is it set to the Record you want?
If it's not a Form, or if you are sure it is correct, then:
Check the Gallery you are referring to. Do you mean that the Combo Box is a Control that is inside the Gallery? If so, check the DisplayMode of the Combo Box - is it set to DisplayMode.View? Whether it is or not though, a value should still be populating in there if you have DefaultSelectedItems correctly set of that same Combo Box (which it seems like you do to me).
Otherwise, you have already indicated that you might have DefaultSelectedItems correctly set
(but check it once more just in case).
and if so,
Check those two threads I gave
especially the first one Combo box auto populated data not working with Patch or in email
as that may help you identify your issue.
See if it helps @jed76
@jed76 wrote:@RandyHayes Just tried this and it works a treat.....
*****IGNORE - I have just figured it out by using an OR statement set to check for "ThisItem.<columnName" !IsEmpty as well. Many thanks. *******
I see you might have resolved your issue now, glad you were able to resolve it 🙂
What an amazing event we had this year, as Microsoft showcased the latest advancements in how AI has the potential to reshape how customers, partners and developers strategize the future of work. Check out below some of our handpicked videos and Ignite announcements to see how Microsoft is driving real change for users and businesses across the globe. Video Highlights Click the image below to check out a selection of Ignite 2023 videos, including the "Microsoft Cloud in the era of AI" keynote from Scott Guthrie, Charles Lamanna, Arun Ulag, Sarah Bird, Rani Borkar, Eric Boyd, Erin Chapple, Ali Ghodsi, and Seth Juarez. There's also a great breakdown of the amazing Microsoft Copilot Studio with Omar Aftab, Gary Pretty, and Kendra Springer, plus exciting sessions from Rajesh Jha, Jared Spataro, Ryan Jones, Zohar Raz, and many more. Blog Announcements Microsoft Copilot presents an opportunity to reimagine the way we work—turning natural language into the most powerful productivity tool on the planet. With AI, organizations can unearth value in data across productivity tools like business applications and Microsoft 365. Click the link below to find out more. Check out the latest features in Microsoft Power Apps that will help developers create AI-infused apps faster, give administrators more control over managing thousands of Microsoft Power Platform makers at scale, and deliver better experiences to users around the world. Click the image below to find out more. Click below to discover new ways to orchestrate business processes across your organization with Copilot in Power Automate. With its user-friendly interface that offers hundreds of prebuilt drag-and-drop actions, more customers have been able to benefit from the power of automation. Discover how Microsoft Power Platform and Microsoft Dataverse are activating the strength of your enterprise data using AI, the announcement of “plugins for Microsoft Copilot for Microsoft 365”, plus two new Power Apps creator experiences using Excel and natural language. Click below to find out more about the general availability of Microsoft Fabric and the public preview of Copilot in Microsoft Fabric. With the launch of these next-generation analytics tools, you can empower your data teams to easily scale the demand on your growing business. And for the rest of all the good stuff, click the link below to visit the Microsoft Ignite 2023 "Book of News", with over ONE HUNDRED announcements across infrastructure, data, security, new tools, AI, and everything else in-between!
This is the ninth post in our series dedicated to helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we feature new content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other! Today's Tip: All About the Galleries Have you checked out the library of content in our galleries? Whether you're looking for the latest info on an upcoming event, a helpful webinar, or tips and tricks from some of our most experienced community members, our galleries are full of the latest and greatest video content for the Power Platform communities. There are several different galleries in each community, but we recommend checking these out first: Community Connections & How-To Videos Hosted by members of the Power Platform Community Engagement Team and featuring community members from around the world, these helpful videos are a great way to "kick the tires" of Power Platform and find out more about your fellow community members! Check them out in Power Apps, Power Automate, Power Pages, and Copilot Studio! Webinars & Video Gallery Each community has its own unique webinars and videos highlighting some of the great work being done across the Power Platform. Watch tutorials and demos by Microsoft staff, partners, and community gurus! Check them out: Power Apps Webinars & Video Gallery Power Automate Webinars & Video Gallery Power Pages Webinars & Video Gallery Copilot Studio Webinars & Video Gallery Events Whether it's the excitement of the Microsoft Power Platform Conference, a local event near you, or one of the many other in-person and virtual connection opportunities around the world, this is the place to find out more about all the Power Platform-centered events. Power Apps Events Power Automate Events Power Pages Events Copilot Studio Events Unique Galleries to Each Community Because each area of Power Platform has its own unique features and benefits, there are areas of the galleries dedicated specifically to videos about that product. Whether it's Power Apps samples from the community or the Power Automate Cookbook highlighting unique flows, the Bot Sharing Gallery in Copilot Studio or Front-End Code Samples in Power Pages, there's a gallery for you! Check out each community's gallery today! Power Apps Gallery Power Automate Gallery Power Pages Gallery Copilot Studio Gallery
In the bustling world of technology, two dynamic leaders, Geetha Sivasailam and Ben McMann, have been at the forefront, steering the ship of the Dallas Fort Worth Power Platform User Group since its inception in February 2019. As Practice Lead (Power Platform | Fusion Dev) at Lantern, Geetha brings a wealth of consulting experience, while Ben, a key member of the Studio Leadership team at Lantern, specializes in crafting strategies that leverage Microsoft digital technologies to transform business models. Empowering Through Community Leadership Geetha and Ben's journey as user group leaders began with a simple yet powerful goal: to create a space where individuals across the DFW area could connect, grow their skills, and add value to their businesses through the Power Platform. The platform, known for its versatility, allows users to achieve more with less code and foster creativity. The Power of Community Impact Reflecting on their experiences, Geetha and Ben emphasize the profound impact that community engagement has had on both their professional and personal lives. The Power Platform community, they note, is a wellspring of resources and opportunities, fostering continuous learning, skill enhancement, and networking with industry experts and peers. Favorite Moments and Words of Wisdom The duo's favorite aspect of leading the user group lies in witnessing the transformative projects and innovations community members create with the Power Platform. Their advice to aspiring user group leaders? "Encourage diverse perspectives, maintain an open space for idea-sharing, stay curious, and, most importantly, have fun building a vibrant community." Building Bridges, Breaking Barriers Geetha and Ben encourage others to step into the realm of user group leadership, citing the rewarding experience of creating and nurturing a community of like-minded individuals. They highlight the chance to influence, impact, and positively guide others, fostering connections that extend beyond mere technology discussions. Joining a User Group: A Gateway to Growth The leaders stress the importance of joining a user group, emphasizing exposure to diverse perspectives, solutions, and career growth opportunities within the Power Platform community. "Being part of such a group provides a supportive environment for seeking advice, sharing experiences, and navigating challenges." A Year of Milestones Looking back at the past year, Geetha and Ben express pride in the group's growth and global participation. They recount the enriching experience of meeting members in person at the Microsoft Power Platform conference, showcasing the diverse range of perspectives and guest speakers that enriched the community's overall experience. Continuous Learning on the Leadership Journey As user group leaders, Geetha and Ben recognize the continuous learning curve, blending interpersonal skills, adaptability, and dedication to foster a vibrant community. They highlight the importance of patience, persistence, and flexibility in achieving group goals, noting the significance of listening to the needs and suggestions of group members.They invite all tech enthusiasts to join the Dallas Fort Worth Power Platform User Group, a thriving hub where the power of community propels individuals to new heights in the dynamic realm of technology.
Are you attending Microsoft Ignite in Seattle this week? If so, we'd love to see you at the Community Lounge! Hosted by members of our Community team, it's a great place to connect, meet some Microsoft executives, and get a sticker or two. And if you're an MVP there are some special opportunities to meet up! The Community Lounge is more than just a space—it's a hub of activity, collaboration, and camaraderie. So, dive in, explore, and make the most of your Microsoft Ignite experience by immersing yourself in the vibrant and dynamic community that awaits you.Find out the schedule and all the details here: Community Lounge at Ignite! See you at #MSIgnite!
This is the eighth post in our series dedicated to helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we feature new content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other! This Week: All About Subscriptions & Notifications Subscribing to a CategorySubscribing to a TopicSubscribing to a LabelBookmarksManaging & Viewing your Subscriptions & BookmarksA Note on Following Friends on Mobile Subscriptions ensure that you receive automated messages about the most recent posts and replies. 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 You can 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.
We are thrilled to announce our first-ever Power Apps Copilot Coffee Chat with Simon Matthews and Miti Joshi, which will be held LIVE on November 14th, 2023 at 9:30 AM Pacific Standard Time (PST). Give your "kudo" today (by clicking the thumbs up button 👍 below) and mark your calendars for November 14th, 2023 at 9:30 AM PST to join us for an engaging and informative session. This is an incredible opportunity to connect with members of the Power Apps product team and ask them anything. We will discuss the emergence of generative AI and how we are changing the way makers build and use Microsoft Power Apps with the support of Copilot. We are excited to have Simon Matthews and Miti Joshi as our hosts for this AMA. Simon leads the Product Management team focused on Power Apps Maker Copilot and Data Experiences, while Miti builds Copilot for business application users, focusing on Copilot for end users of canvas and model-driven Power Apps. This live event will give you the unique opportunity to learn more about the Power Apps Copilot plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!HOW TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post. Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today. Invitations will be sent on November 13thUsers posting Kudos after November 13th at 5PM PST may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for November 14th, 2023 at 9:30 AM PST and join us for an engaging and informative session.
User | Count |
---|---|
108 | |
62 | |
61 | |
45 | |
41 |
User | Count |
---|---|
153 | |
71 | |
58 | |
49 | |
47 |