I have posted this question in the past and still haven't figured it out. Please Help
I have 2 data sources:
ParentProject
ChildItem, (ProjectID)lookup field to the ParentProject "ID"
I am displaying the Parent Gallery whose datasource is ParentProject,and would like an icon to be visible if a new childItem has been entered that matches the "Id".
icon.visible= If( 'ChildItem'.ProjectID = ThisItem.Id, Created<=Today()-7,true,false)
It gives me an invalid argument type for the =
My ultimate goal is to visually see an icon presented on the parent gallery item if a child item was created in the last 7 days.