Given the following columns, where A is the currency and B is a monetary value in that currency:
A | B |
---|---|
USD | 50 |
USD | 150 |
EUR | 200 |
EUR | -150 |
AUD | 300 |
How can I use the GOOGLEFINANCE function to return the sum the of entire value of column B in another given currency (for example, GBP)?
Any advice appreciated.
Thanks
=B1*GOOGLEFINANCE("CURRENCY:"&A1&"GBP")
and drag down. I don't think it would be possible in a neat looking arrayformula to get a directSUM()
unless it will probably look terrible. Maybe some script of some sort. – JvdV