Hi guys ,
I have a doubt in filter a date. I have gallery in PowerApps that gallery contain sql table. I need a record to display in that gallery (based on a collector ID) and that record should be less than today date and also hide that null records (sql table date columns contain null records).
less than today date (<today ) and blank ..
My code ;
Filter(
AddColumns(
MYSQLtable,
"dateoffset",
Text(
DateAdd(
MYDatecolumn,
TimeZoneOffset(),
Minutes
),
"[$-en-US]mm/dd/yyyy"
)
),
DateValue(dateoffset) <= DateAdd(
Today(),
TimeZoneOffset(),
Minutes
) && DateValue(dateoffset),
COLLECTORID = Text(AgeingCollectordd_1.Selected.C901_CODE_ID)
),
thank you all ,

Report
All responses (
Answers (