Hi everyone,
I need help with a problem. I'm trying to use the Split function in a Gallery that has a SharePoint list as its data source. The problem I'm having is that the field I'm trying to apply the function to isn't text and therefore doesn't allow me to do the job.
Filter(
DDBB; HRBP = "HRBP - OK";
)
In this example I use Filter to filter the gallery, where I want to select by the word HRBP that is equal to "HRBP", but only up to "-". Therefore there is no way that it works: It does not work like this:
Filter(
DDBB; HRBP = First(Split("HRBP - OK","-"));
)
The sharePoint field containing "HRBP - OK" is STATUS Any idea how it could be solved? thank you