So, I have this PowerApp the utilizes a calendar (not tied to Outlook).
The calendars has days highlighted based on a Collection of dates (pulled from excel table).
The highlighting of the days, is a circle with a Visible formula as such:
If(
(DateAdd(_firstDayInView, ThisItem.Value) in _mydates && Title2.Visible,
true,
false
)
But, alas, the circles show up fine through Chrome but do not show up on my iPhone.
Could somebody point me in the right direction?
Peace
For bonus points:
why does
&& Title2.Visible
need to be in that above formula?