
Not sure if this is an issue with powerapps or dataverse. I have an excel sheet that is periodically updated with a date and some data. I am making a canvas app that is a calendar that tracks these dates, shows the information, and some other features. How it's supposed to work is a date is entered in the excel sheet, the dataflow brings in the new data into a dataverse table, and the canvas app is then refreshed to show the dates on a calendar.
The problem is the dates (or any information) brought in from the dataverse table do not show up. They are correctly formatted as dates, and I have no delegation errors on any of my powerapps formulas. No idea what's going on here. I am using a lookup formula inside of an !isblank formula, to have a dot become visible on the date in the calendar.
The formula is:
!IsBlank(LookUp('Completed Visitss', 'Date Conducted' = DateAdd(_firstDayInView,ThisItem.Value,Days)).'Date Conducted')
And is located in the visible property of the item I want to appear on the date in the calendar when there is a date matching in the dataverse table. Again no delegation warnings.
Any help? Been stuck on this one for a couple days now.