Thanks Shane. This solves one of the nightmares I'm currently facing on a project based on SharePoint. But i tried to apply this in dataverse. It keeps throwing error that the function Search has invalid arguments. Any further help?
@ShanesCows Жыл бұрын
DataVerse has a different syntax for the column. I don’t have it off the top of my head but do columnname. And see what it offers you. Or maybe just columnname.
@kunleadelabu9810 Жыл бұрын
@ShanesCows I actually tried that, but It just seems not to be working.
@djanepa10 ай бұрын
Thanks for the tip! But I have one more question: How do I filter when my column choices has multiple choices?
@ShanesCows10 ай бұрын
Good timing on the question. This coming Mondays question has an example of that. You have to use the in operator. But if you are using SharePoint it is not delegable.
@BBhive Жыл бұрын
Thank you for the info! Does this also work if the column in SharePoint is a lookup column?
@ShanesCows Жыл бұрын
Yes, it should.
@danielszelagiewicz2262 Жыл бұрын
Hello, concept looks very clean and straight - forward. But it is not working with choice column in Sharepoint... On preview it looks like the column created has also table , not text in itself...
@ShanesCows Жыл бұрын
That is because you are using a Mult-choice column. You are correct, they are stored as a Table. For them you would need to use In operator. ☹️
@danielszelagiewicz2262 Жыл бұрын
@@ShanesCows Thanks! I have learnt a lot from You !
@M87user Жыл бұрын
Hi by default the search is made as a 'filter' not 'search' function in power apps. when I change it to search it does search correctly but when I click on item it does not redirect to the details. Any suggestions how to fix it?
@luisjimenez8760 Жыл бұрын
Hi Shan. Could you tech how can search by contain in delegation
@ShanesCows Жыл бұрын
Search with SharePoint is never delegable from Power Apps 😑
@MrSfinkster Жыл бұрын
Awesome tip, i was searching for this today. Saved my day :) as always .
@ShanesCows Жыл бұрын
Glad it helped and you could find it. Shorts are harder to find stuff I think.
@user-ze3sg6ix1u2 ай бұрын
Thank you for solving my problem in one minute dude. I hate powerapps. I prefer to code my self lmao
@ShanesCows2 ай бұрын
Glad to help. This low code thing will grow on you over time. 😎
@jeanpierreragequit1726 Жыл бұрын
Great tip ! Thx u Shane !
@ShanesCows Жыл бұрын
You are welcome! 😎
@MenPoriyaalan Жыл бұрын
Saved my Day .. Thank you
@ShanesCows Жыл бұрын
Happy to help :)
@asaaprabhat3489 Жыл бұрын
Thanks alot for the tip Shan
@ShanesCows Жыл бұрын
My pleasure 😊
@Soulebi03 Жыл бұрын
If(varSearch && drpColumnHeaders.SelectedText.Value ="Competency", Search(AddColumns('DataSource',"Competency",Competency.Value),varSearchInput,"Competency"), hi Shane can you tell me whats wrong with my formula? I have the same problem, I have a choice type of column however this doesn't work
@ChadRobbins-C425 ай бұрын
Since it is now a column, you need to use reference quotes (single quotes) and not double quotes. Also, you need to rename your new column, it cannot match the old column. Search( AddColumns( 'DataSource', 'New_Competency'_Column, 'Competency'.Value ), varSearchInput.Value, 'New_Competency_Column' )