In my gallery I have circle icon which changes colour depending on another field in my gallery (Membership_End) for whatever reason this icon works perfectly fine on my PC, but when I switch to the mobile device which I hope to run the app on (Samsung
Galaxy tab A 2018), the icon just isn't there. Any help would be greatly appreciated, thanks.
Additional info: My datasource is a Cosmos Database that gets saved to a collection which is then used to populate the gallery.
Formula in icon (probably not the best but it works)
If(
Value(ThisItem.Membership_End) = 0,
RGBA(
0,0,0,0
),
DateValue(ThisItem.Membership_End) < Today(),
Color.Red,
DateDiff(
Today(),
ThisItem.Membership_End
) >= 1 && DateDiff(
Today(),
ThisItem.Membership_End
) <= 14,
Color.Orange,
RGBA(
0,0,0,0
)
)
Icons on PC
Mobile View