CURRENCYADD
Creates a new currency by adding two currencies of the same type together.
Syntax
=CURRENCYADD(currency, currency)
Arguments
Argument | Type | Description |
---|---|---|
currency | Currency | Amount |
Examples
=CURRENCYADD(CURRENCY(0.1), CURRENCY(0.2))
→$0.30
=CURRENCYADD(CURRENCY(0.1, "EUR"), CURRENCY(0.2, "EUR"))
→€0.30
=CURRENCYADD(CURRENCY(0.1, "AUD"), CURRENCY(0.2, "AUD"))
→A$0.30
Updated 9 months ago