Extra formules voor verkoopinformatie uit Exact Online

Het zou fijn zijn als er ingebouwde formules kunnen komen voor de volgende drie queries in een Exxcel-formule:

Ophalen valuta van verkoopfactuur:

=I_SQL_SELECT_SCALAR("currency","exactonlinerest..salesinvoices","invoicenumber=" & $C2)

Ophalen artikelcode, hoeveelheid en nettoprijs van verkoopfactuurregel:

=I_SQL_SELECT_SCALAR("itemcode","exactonlinerest..salesinvoicelines","invoiceid=to_guid('" & $E3 & "') and linenumber = " &$H3 )
=I_SQL_SELECT_SCALAR("quantity","exactonlinerest..salesinvoicelines","invoiceid=to_guid('" & $E2 & "') and linenumber = " &$H2 )
=I_SQL_SELECT_SCALAR("netprice","exactonlinerest..salesinvoicelines","invoiceid=to_guid('" & $E2 & "') and linenumber = " &$H2 )