Hello Guys,
I'm following this tutorial to learn how to shape data in canvas app.
Using the "Filter" function, this command works correctly:
Filter(Items, Origin = "China")
showing the two items from Cina.
Using the Search function:
Search(Items, SearchInput.Text, "Name", "Description")
also this command give me the right results.
Combining the two functions in this way:
Search(Filter(Items, Origin = "China"), SearchInput.Text, "Name", "Description")
if I don't write any text in "SearchInput" control, I can see the rows with Origin = Cina, but whatever string I try to find in the items showed, the result is null.
I am attaching the datasource excel file, and the datalog of the monitor, hoping it will be useful.
Please help me, because I don't understand where is the error.