Hello Power Apps Wizards
I am still working on the power apps indicated on my thread here: Re: Putting Gallery Text Content into a Tooltip Fo... - Power Platform Community (microsoft.com)
For the most part, I have addressed the accessibility issue on the app discussed on that thread, however I had come to my attention the data source is not very clean, as some cells are empty and some cells contain a dash ( - ), I tried to change the output of the Inventory Gallery calls from:
ThisItem.Inventory
to:
If(IsBlank(ThisItem.Inventory,
"No Data Found",
ThisItem.Inventory
)
This formula works on the editing canvas, however, the cell goes completely blank when I play it, so not sure what I did wrong.
The other thing I want to address in the same formula is something along the lines of "if data source is showing "-" display no data found", not sure how I can do that?