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 / Filtering of Informati...
Power Apps
Unanswered

Filtering of Information for Viewing

(0) ShareShare
ReportReport
Posted on by 10

Hi I need some help I am creating a PowerApps visualization and I can't seem to make someone's list appear in PowerApps.

I am using a Data table from SharePoint to pull information. Is my formula correct or is there something I need to add? 

 

If(IsBlank(TextInput1.Text),
Sort(
Filter('CRP Knowledge Management Tracker', TextInput1.Text in 'Program Code', Substitute(varUser, " ", "") in Substitute("Lead_x0020_CRP", " ", "")),
'Program Code',SortOrder.Ascending
),
Sort(
Filter('CRP Knowledge Management Tracker', TextInput1.Text in 'Program Code'),
'Program Code',SortOrder.Ascending
)
)

 

 

I need to make all of John Doe's information the default view whenever he logs-in and still has the ability to search other people's item when he types in the search bar.

Signified_0-1708917550804.png

 

Signified_1-1708917576301.png

Signified_2-1708917734116.png

 

 

 

Categories:
I have the same question (0)
  • Rahman1005 Profile Picture
    109 on at

    Hi,

    Please refer below article based on logging user display view.

    https://davidlozzi.com/2018/11/08/creating-a-user-friendly-sharepoint-view-using-powerapps/ 

  • mmbr1606 Profile Picture
    14,629 Super User 2026 Season 1 on at

    hey @Signified 

     

    can you try this please:

     

    If(
     IsBlank(TextInput1.Text),
     Sort(
     Filter(
     'CRP Knowledge Management Tracker',
     If(
     varUser = "John Doe",
     Substitute("Lead_x0020_CRP", " ", "") = Substitute(varUser, " ", ""),
     TextInput1.Text in 'Program Code'
     )
     ),
     'Program Code',
     SortOrder.Ascending
     ),
     Sort(
     Filter(
     'CRP Knowledge Management Tracker',
     TextInput1.Text in 'Program Code'
     ),
     'Program Code',
     SortOrder.Ascending
     )
    )
    
    

     

     

    Let me know if my answer helped solving your issue.

    If it did please accept as solution and give it a thumbs up so we can help others in the community.



    Greetings

  • Signified Profile Picture
    10 on at

    Sorry it didn't work all it did was show entries including Jane Doe

  • mmbr1606 Profile Picture
    14,629 Super User 2026 Season 1 on at

    hey @Signified 

     

    sorry i copied the wrong text, the first one was hard coded with Jane Doe.

     

    try this instead:

    If(
     IsBlank(TextInput1.Text),
     Sort(
     Filter(
     'CRP Knowledge Management Tracker',
     If(
     !IsBlank(varUser),
     Substitute("Lead_x0020_CRP", " ", "") = Substitute(User().Email, " ", ""),
     true
     )
     ),
     'Program Code',
     SortOrder.Ascending
     ),
     Sort(
     Filter(
     'CRP Knowledge Management Tracker',
     TextInput1.Text in 'Program Code'
     ),
     'Program Code',
     SortOrder.Ascending
     )
    )
    

     

    Let me know if my answer helped solving your issue.

    If it did please accept as solution and give it a thumbs up so we can help others in the community.



    Greetings

  • Signified Profile Picture
    10 on at

    I'm sorry it still doesn't work. It still won't show entries made only by John Doe

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 Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 326 Most Valuable Professional

#2
11manish Profile Picture

11manish 168

#3
sannavajjala87 Profile Picture

sannavajjala87 75 Super User 2026 Season 1

Last 30 days Overall leaderboard