When I write a code "month(fv!item.asDate) = local!month", why it's showing a result A null parameter has been passed. How to resolve that part?
Also I put that part
if( a!isnullOrEmpty(index(fv!item, "asDate", null)), false, contains( tointeger(local!month), month(index(fv!item, "asDate", null)) ) ),
but same error as it is
Discussion posts and replies are publicly visible
Always make sure to make expressions null-safe. i.e. don't process any value that you know already is null.
For the rest the error given is rather clear.
So how to write that?
a!forEach( local!items, if( a!isnullOrEmpty(index(fv!item, "asDate", null)), false, contains( tointeger(local!month), month(index(fv!item, "asDate", null)) ) ) )
same error occurred yet
What is in ri!taskProductionList? screenshot?
So "asDate" is a field which is in "taskProductionList".table.