Hi,
My text file uploaded in sharepoint folder and able to show in the power app. However, I'm trying to search some key word (predefined) and show me count of the words.
any idea how we could do this?
Thanks
Hi @PRABA7385 ,
This is a complete workaround, but put this on a Label and your text as the Default of a Text box
With(
{
wSource: Lower(YourTextFileBox.Text),
wSearch: Lower(YourSearchBox.Text)
},
CountRows(
Split(
wSource,
wSearch
).Result
) - 1
)
Please click Accept as solution 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 giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473