Hi guys,
I am currently experimenting with PowerApps and I have one thing I can't seem to understand.
I am editing the browse screen, trying to filter the items. I wanted the items to be filtered by the current user, so I user the formula: Filter(MyData,"Author.FullName" = User().FullName)
I also want to show some columns because currently I don't have any so I am trying to use the formula:
ShowColumns(MyData, "Avarage", "sum")
it seems that I can't get the two formulas to work together. I am trying to use && operator:
Filter(MyData,"Author.FullName" = User().FullName) && ShowColumns(MyData, "Avarage", "sum")
but it just gives me an error.
what can I do to show the columns I want AND use the filter function?
thanks!