Can someone please explain , why when using a conditional IF , only a SINGLE row from the child Table is being returned.
I am guessing it has to do with the way the row replicators work. Attached please find the file which illustrates the problem.
This is what I have in Cell C3 (returns all rows from the Repack Order Table)
=NL("Rows", "Repack Order")
Cell D3 ( Returns the No. field from the Repack Order)
=NF($C3,"No.")
Cell E3
=IF(C3="",{""},NL("Rows", "Repack Order Line" , , "Order No.",D3))
In the event that I remove the IF C3="" check , I get back the result I am expecting
Date
Votes
2 comments
-
Jet Reports Historic Posts Try:
NL("Rows",IF(C3="",{""},NL("Filter", "Repack Order Line" , , "Order No.",D3))
NL("Rows") seems to need to be the first thing in the cell. -
Jet Reports Historic Posts Try this
{} wont work try after removing the {} brackets
=IF(C3=""," ",NL("Rows", "Repack Order Line" , , "Order No.",D3))
I think this should work….
Alex :)
Please sign in to leave a comment.