'What will be the formula to check which currency a cell contains?
Solution 1:[1]
Use the following formula in G2
:
=ARRAYFORMULA(if(not(ISBLANK(F2:F)), sumif(LEFT(TO_TEXT(B2:B),1),F2:F,B2:B),))
Here is the sample file: https://docs.google.com/spreadsheets/d/1YZmXT9zCXogDLKE400IwqvdeBfdMCJKuouXY8hATp-w/edit?usp=sharing
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | David Leal |