Credit control macro
Macros are a very neat way of being able to add in exactly the sort of functionality you need into Enterprise or Modulus. And very often the really simple ones are those that make a big difference.
Here is a macro aimed at credit controllers. It simply brings up a list of unpaid overdue invoices.
We recommend Enterprise users to use it to power a Data List., so that the list can be accessed with one click. Modulus users should paste it into a Same Process macro and assign it to a function key.
QUERY([INVOICES];[INVOICES]Due Date>=(Current Date(*)-30);*)
`This line finds invoices which are over 30 days old. You can change the number.
QUERY([INVOICES]; & ;[INVOICES]Total Due#0;*)
`Now it looks for those which do not have 0 as the amount due
QUERY([INVOICES]; & ;[INVOICES]State=2)
`This line is looking for Posted invoices, so filtering out receipts and deposits
Back
to main newsletter »
|