Home > Mobile >  Remove ,0000 number format from multiple formula on one cell
Remove ,0000 number format from multiple formula on one cell

Time:02-19

enter image description here Hello stackoverflow i want to ask about how to remove those ,00000 (on screenshot above) im using multiple formula and "Format > Number > option" doesnt work for me

Thank you

CodePudding user response:

You can use =ROUND() or =ROUNDDOWN() function to remove the decimal.

Your AVERAGEIF formula should look like this:

=ROUND(AVERAGEIF($B$13:$B;"Pragmatic Play";$E$13:$E))

OR

=ROUNDDOWN(AVERAGEIF($B$13:$B;"Pragmatic Play";$E$13:$E))

Example:

enter image description here

References:

CodePudding user response:

For currency values you can also use =DOLLAR() (depending on spreadsheet's local setting) which allows you do determine the number of decimals:

=DOLLAR(AVERAGEIF($B$13:$B;"Pragmatic Play";$E$13:$E);2)&" (other things)"
  • Related