web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Edit Form - Combo box ...
Power Apps
Answered

Edit Form - Combo box properties

(0) ShareShare
ReportReport
Posted on by 31
I have a 'Period' field which is a single text column in my Sharepoint List.

In my New form and Edit form, this is a combo box. No problem with new form but in my Edit form, the stored value is not showing. I have already tried what copilot suggested but nothing worked so far. What could have been wrong with the properties? my Items is coming from a secondary list.

This combo box is single-select.

My Attachments also are not showing in my Edit form but is present in my View Form.

Items:
'Period'

DefaultSelectedItems:
If(
    IsBlank(Parent.Default),
    Blank(),
    Table(
        LookUp(
            'Period',
            Title = Parent.Default
           
        )
    )
)

I'm always struggling with Edit form. I'm fine with new and view forms.
 


 
Categories:
I have the same question (0)
  • Verified answer
    Vish WR Profile Picture
    3,748 on at

    The issue is Table(LookUp(...)) — combo box can't match it back to your Items properly.

    Replace your DefaultSelectedItems with this:

    If(

        IsBlank(Parent.Default),

        Blank(),

        Filter('Period', Title = Parent.Default)

    )

    Filter() returns the right table structure that matches your Items source. Also set the combo box Value property to "Title" if you haven't already.

     

    Vishnu WR
     
    Please  Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider answering Yes to Was this reply helpful? or give it a Like 
     
  • LaraDanicaLim Profile Picture
    31 on at
    @Vish WR

    I tried but it did not work either. Thank you, still.
  • Suggested answer
    Subhash.Dev Profile Picture
    4 on at
     Combo Box , DefaultSelectedItems is expecting the record type data item. so whenever if your trying to use the combo box for the view, which means, to show the data got save, you need to pass that as in record type.

    just pass that as > 

     
    [selectedItme.Title]
  • LaraDanicaLim Profile Picture
    31 on at
    @Vish WR
    @Subhash.Dev

    I already found the cuplrit. It was because my FormMode was still in New instead of Edit.

    Thank you anyway!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard