Hello all! Is there a way to flag an item (which was registered by a Papps form) as secret, so it keeps stored in a sharepoint list, but a gallery can't find it?
Thanks in advance!
I've discovered the "||" (double pipe) and was able to merge both! But using "StartsWith" instead of "Search"
I've obtained success making the SP column as a single line of text and using your second function! Very thanks for that. But, as I use a Search function too, I'm having trouble merging both.
I've tried to put like this (currently using the portuguese version of the studio):
yes
grts
Inside the "items" property, you say?
Hi @Anonymous ,
Use Filter function to filter out the secret record, please try this code:
Filter('SP list", ID <> 1) // asume the secret record id =1
Hope this helps.
Sik
I don't know whether you have a flag or some field in the SP list that shows if its secret or not?
In the control you can then filter on the SP list to show all non-secret items. Small examples below.
Filter(SP_List, not(IsSecret)); // if secret is a yes/no field in SharePoint
Filter(SP_List, Secret = "Not secret"); // in case you're using a string
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473