Hi,
I am trying to create a report that needs to find the lowest invoiced price from the sales invoice line table for approx 2,000 inventory items.
I cant seem to find a way to easily report the lowest value found in the unit price field.
Any suggestions would be most appreciated :-)
Thanks
Sara
4 comments
-
Jet Reports Historic Posts Hi Sara,
You could sort your sales invoice line table for each item by price (ascending) and intergate it with an NL(First) formula.
Elena -
Jet Reports Historic Posts Thanks for that Elena, I did try outputting and sorting our sales price table, but we have so many records it makes running the report almost impossible.
I was hoping that there was a magic formula that could lookup the MIN on a table without having to output it all.
Thanks again for your suggestion.
Sara -
Jet Reports Historic Posts Well, as far as I know, the NL(First) would be tha magic formula to retrieve the MIN that you are looking for.
I don't know what you have tried but I was thinking about something like this:
C7=NL("First";"Sales Invoice Line";"Unit Price";"Type";"Item";"No.";B7;"+Unit Price";"*")
Elena -
Daniel Baker I'm trying to do the same thing - First returns the first record found matching given criteria, not the minimum value found. This can be done in SQL - but I'm not sure how to type incorporate SQL within a Jet function.