WD: How to Use a Conditional Field to Specify a Number of Digits (142778)



The information in this article applies to:

  • Microsoft Word for Windows 6.0
  • Microsoft Word for Windows 6.0a
  • Microsoft Word for Windows 6.0c
  • Microsoft Word for Windows 95
  • Microsoft Word for Windows 95 7.0a
  • Microsoft Word 98 Macintosh Edition
  • Microsoft Word for the Macintosh 6.0
  • Microsoft Word for the Macintosh 6.0.1
  • Microsoft Word for the Macintosh 6.0.1a
  • Microsoft Word for Windows NT 6.0

This article was previously published under Q142778

SUMMARY

This article describes how to specify a numeric format switch within a nested {IF} field to control the number of leading zeros in a numeric result. The formula allows you to format numbers that contain an unequal number of digits, such as 10, 100, and 1000, as numbers that contain an equal number of digits, such as 0010, 0100, and 1000.

MORE INFORMATION

Use a numeric picture switch (\#) to specify the number of digits for the result. For example, if your number is to contain five digits, use the following numeric picture switches within the conditional formula:
   \# 0000#
   \# 000##
   \# 00###
   \# 0####
				
Create the following conditional {IF} field:

{if { MERGEFIELD number } > "9" { if { MERGEFIELD number } > "99" { if {MERGEFIELD number } > "999" { if { MERGEFIELD number } > "9999" { MERGEFIELD number } { MERGEFIELD number \# 0#### }}{ MERGEFIELD number \# 00### }}{ MERGEFIELD number \# 000## }}{MERGEFIELD number \# 0000# }}

Modification Type:MinorLast Reviewed:8/17/2005
Keywords:kbfield kbhowto KB142778