Hi,
I've made an IF statement in the templatefill for my app, where it will fill depending on how long its been since the created date. It works all good on the computer but when I use the app on my phone(web browser and PowerApps mobile) it doesn't seem to do anything. Do you know how to resolve this? Is it based on timezones? Below is the formula I've used.
If(DateDiff(ThisItem.'DB Eng Date',Today(),Days)>=7,RGBA(255, 0, 0, 1),DateDiff(ThisItem.'DB Eng Date',Today(),Days)>= 3,RGBA(255, 191, 0, 1),RGBA(0, 0, 0, 0))