Neu Gesamtnettosumme in einer Zeile ausgeben in Formular 2.0

Olbrich Handel & Dienstl.

Aktives Mitglied
15. Dezember 2010
68
3
Hohnstorf
Moin,

standardmäßig wird die Gesamtnettosumme bei Verwendung beider Steuersätze in jeweils einer Zeile ausgegeben. Wie kann ich diese aber in einer Zeile ausweisen?

1619088035161.png

Standardmäßig steht nachfolgender Code in Total Block:

cond(@OneCurrency, LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture), "") +

cond(@TwoCurrencies,
cond(Report.CurrencyISO <> Report.ShipFromCountryCurrencyISO,
LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture) + " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
, cond(Report.CurrencyISO <> Report.TaxCountryCurrencyISO,
LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture) + " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)
, LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture)))
, "") +


cond(@ThreeCurrencies, LocCurrL$(TotalsInvoice.NetPriceTotal, @InvoiceCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.ShipFromCountryCurrencyFactor, @ShipFromCountryCulture)
+ " / " +
LocCurrL$(TotalsInvoice.NetPriceTotal / Report.CurrencyFactor * Report.TaxCountryCurrencyFactor , @TaxCountryCulture), "")

Besten Dank schon mal im Voraus.
 

Ähnliche Themen