Difference between revisions of "Manuals/calci/PADZEROES"

From ZCubes Wiki
Jump to navigation Jump to search
 
(One intermediate revision by one other user not shown)
Line 13: Line 13:
 
# =PADZEROES(4,6) = 000004
 
# =PADZEROES(4,6) = 000004
 
# =PADZEROES(678,5) = 00678
 
# =PADZEROES(678,5) = 00678
# =PADZEROES(-7,3) = 00-7
+
# =PADZEROES(-7,3) = 0-7
 
# =PADZEROES(45.5,5) = 00045.5
 
# =PADZEROES(45.5,5) = 00045.5
 
# =PADZEROES(59,5.7) = 000059
 
# =PADZEROES(59,5.7) = 000059
 +
 +
==Related Video==
 +
 +
{{#ev:youtube|cD60dctp4Qc|280|center|How to add leading Zeros}}
 +
  
 
==See Also==
 
==See Also==

Latest revision as of 16:17, 6 April 2018

PADZEROES(Number,Digits)


  • where is the number to be displayed,
  • is the total number of digits.

Description

  • This function pads the given number with zeroes till the mentioned total number of digits are satisfied.
  • should be greater than number of digits of . Else this function returns the same number as in argument without any padding.
  • For the fractional value of , it is rounded off to nearest integer.

e.g PADZEROES(20,3.6) displays '0020'. (Rounded off to 4 digits)


Examples

  1. =PADZEROES(4,6) = 000004
  2. =PADZEROES(678,5) = 00678
  3. =PADZEROES(-7,3) = 0-7
  4. =PADZEROES(45.5,5) = 00045.5
  5. =PADZEROES(59,5.7) = 000059

Related Video

How to add leading Zeros


See Also


References