sanfrancisco
New Member
- Joined
- Dec 28, 2014
- Messages
- 8
I have a sheet that I'm trying to add commas to the final output formatting. If I use just the basic function Rount(Sum(D1:D8),) the output shows the final number formatted correctly. I am also trying to aggregate another row together with this and show a total count of the number of units based on CountIf and the text such as CountIf(B1:B8,"*Sold*". When combining these together the output shows this:
$8888 (8)
I need the output to show the first number that's been returned with commas: $8,888 (4)
Formula ="$"&ROUND(SUM(D1:D8,)&" ("&COUNTIF(B1:B8,"*Sold*")&")"
$8888 (8)
I need the output to show the first number that's been returned with commas: $8,888 (4)
Formula ="$"&ROUND(SUM(D1:D8,)&" ("&COUNTIF(B1:B8,"*Sold*")&")"