I have this situation in Microsoft Excel:
Cells are formatted by using "Format Cells" and setting the Currency manually for each cell. So, they are not simple strings. I would to sum filtering by currency. Is that possible? How?
Thanks.
|
I have this situation in Microsoft Excel: Cells are formatted by using "Format Cells" and setting the Currency manually for each cell. So, they are not simple strings. I would to sum filtering by currency. Is that possible? How? Thanks. | ||||
|
feedback
|
VBABecause you used the "format" option to format these cells, formatting is not contained within the value of the cell, so we will need to define a function in VBA. Put this (source) in a new module:
Then use the new function Non-VBAIf you don't want to mess with VBA, you will need a helper column next to your numbers. In that column use the function
Then you will need to format these sumif cells to get the currency sign, or add in a | |||||||||||
feedback
|