We are trying to filter the date by today's date.
original line of code is Where( :DateOnly == "2020/02/27" ),
I try to replace the date by Short Date(Today()) or "Short Date(Today())", "|| Short Date(Today())||' ; nothing worked, anyone can help?
----------
Local Data Filter(
Width( 178 ),
Add Filter(
columns( :DateOnly, :Equipment ),
Where( :DateOnly == "||Short Date(Today())||" ),
Display(
:DateOnly,
Size( 172, 238 ),
Height( 238 )
),
Display(
:Equipment,
Size( 172, 51 ),
Height( 51 ),
"List Display"
)
)
),