i'm trying to get a list of Sales between two date :
to do that i used the following formulas :
DateParam is a variable of date filter
H3 =NL("Filtre";"Sales Invoice Line";"No.";"Posting Date";DateParam)
B4=NL("Lignes";"Item";;"No.";$H$3;"-Responsibility Center";"*")
C4=NF(B4;"No.")
F4=NL("Somme";"Sales Invoice Line";"Quantity";"No.";C4;"Posting Date";DateParam)
G4=NL("Somme";"Sales Invoice Line";"Amount";"No.";C4;"Posting Date";DateParam)
i need now to sort those result by Sales Amount or Quantity?
Any suggestions?
5 comments
-
Jet Reports Historic Posts Official comment So mostly this looks correct to me, but there are a couple things that may help. First you are already sorting by Responsibility Center before the sort by sum, so that sort will take precedence. Is that your intention? Also, you may need to change your sort by sum formula to unquote the named range you are referencing like this:
="-=NL(""Somme"";""Sales Invoice Line"";""Quantity"";""No."";NF(;""No."");""Posting Date"";"""&DateParam&""")"
Does that help?
Regards,
Hughes -
Jet Reports Historic Posts Hi,
Please read my post on how to sort by sum here:
http://community.jetreports.com/viewtopic.php?f=23&t=2109
Does that help?
Regards,
Hughes -
-
Jet Reports Historic Posts Hi,
i followed the instructions described in that post but unfortunately it does not work for me !!
pleas find attached what i did.
regards, -
Jet Reports Historic Posts perfect, it works very well.
thanks Hughes,