 |
|  |
|
|
|
 |
|
|
Wayne Snyder posted on January 24, 2008 04:26
|
Visual Basic Language Reference
|
|
Different Formats for Different Numeric Values (Format Function)
A user-defined format expression for numbers can have from one to three sections separated by semicolons. If the style argument of the Format function contains one of the Predefined Numeric Formats, only one section is allowed.
|
If you use
|
This is the result
|
|
One section only
|
The format expression applies to all values.
|
|
Two sections
|
The first section applies to positive values and zeros; the second applies to negative values.
|
|
Three sections
|
The first section applies to positive values, the second applies to negative values, and the third applies to zeros.
|
The following example has two sections: the first defines the format for positive values and zeros; the second section defines the format for negative values. Since the Style argument of the Format function takes a string, it is enclosed by quotation marks.
"$#,##0;($#,##0)"
If you include semicolons with nothing between them, the missing section is printed using the format of the positive value. For example, the following format displays positive and negative values using the format in the first section and displays Zero if the value is zero.
"$#,##0;;\Z\e\r\o"
|
Visual Basic Language Reference
|
|
|
|
|
Predefined Numeric Formats (Format Function)
The following table identifies the predefined numeric format names. These may be used by name as the style argument for the Format function:
|
Format name
|
Description
|
|
General Number, G, or g
|
Displays number with no thousand separator.
|
|
Currency, C, or c
|
Displays number with thousand separator, if appropriate; display two digits to the right of the decimal separator. Output is based on system locale settings.
|
|
Fixed, F, or f
|
Displays at least one digit to the left and two digits to the right of the decimal separator.
|
|
Standard, N, or n
|
Displays number with thousand separator, at least one digit to the left and two digits to the right of the decimal separator.
|
|
Percent
|
Displays number multiplied by 100 with a percent sign (%) appended immediately to the right; always displays two digits to the right of the decimal separator.
|
|
P, or p
|
Displays number with thousandths separator multiplied by 100 with a percent sign (%) appended to the right and separated by a single space; always displays two digits to the right of the decimal separator.
|
|
Scientific
|
Uses standard scientific notation, providing two significant digits.
|
|
E, or e
|
Uses standard scientific notation, providing six significant digits.
|
|
D, or d
|
Displays number as a string that contains the value of the number in Decimal (base 10) format. This option is supported for integral types (Byte, Short, Integer, Long) only.
|
|
X, or x
|
Displays number as a string that contains the value of the number in Hexadecimal (base 16) format. This option is supported for integral types (Byte, Short, Integer, Long) only.
|
|
Yes/No
|
Displays No if number is 0; otherwise, displays Yes.
|
|
True/False
|
Displays False if number is 0; otherwise, displays True.
|
|
On/Off
|
Displays Off if number is 0; otherwise, displays On
|
|
Visual Basic Language Reference
|
|
Predefined Date/Time Formats (Format Function)
The following table identifies the predefined date and time format names. These may be used by name as the style argument for the Format function:
|
Format Name
|
Description
|
|
General Date, or G
|
Displays a date and/or time. For real numbers, display a date and time; for example, 4/3/93 05:34 PM.If there is no fractional part, display only a date, for example, 4/3/93. If there is no integer part, display time only, for example, 05:34 PM. Date display is determined by your system's LocaleID value.
|
|
Long Date, or D
|
Displays a date according to your locale's long date format.
|
|
Medium Date
|
Displays a date using the medium date format appropriate for the language version of the host application.
|
|
Short Date, or d
|
Displays a date using your locale's short date format.
|
|
Long Time, or T
|
Displays a time using your locale's long time format; includes hours, minutes, seconds.
|
|
Medium Time
|
Displays time in 12-hour format using hours and minutes and the AM/PM designator.
|
|
Short Time, or t
|
Displays a time using the 24-hour format, for example, 17:45.
|
|
f
|
Displays the long date and short time according to your locale's format.
|
|
F
|
Displays the long date and long time according to your locale's format.
|
|
g
|
Displays the short date and short time according to your locale's format.
|
|
M, m
|
Displays the month and the day of a date.
|
|
R, r
|
Formats the date and time as Greenwich Mean Time (GMT)
|
|
s
|
Formats the date and time as a sortable index.
|
|
u
|
Formats the date and time as a GMT sortable index.
|
|
U
|
Formats the date and time with the long date and long time as GMT.
|
|
Y, y
|
Formats the date as the year and month.
|
|
Visual Basic Language Reference
|
|
User-Defined Date/Time Formats (Format Function)
The following table shows characters you can use to create user-defined date/time formats. Unlike in previous versions of Visual Basic, these format characters are case-sensitive
|
Character
|
Description
|
|
(:)
|
Time separator. In some locales, other characters may be used to represent the time separator. The time separator separates hours, minutes, and seconds when time values are formatted. The actual character used as the time separator in formatted output is determined by your system's LocaleID value.
|
|
(/)
|
Date separator. In some locales, other characters may be used to represent the date separator. The date separator separates the day, month, and year when date values are formatted. The actual character used as the date separator in formatted output is determined by your locale.
|
|
(%)
|
Used to indicate that the following character should be read as a single-letter format without regard to any trailing letters. Also used to indicate that a single-letter format is read as a user-defined format. See below for further details
|
|
d
|
Displays the day as a number without a leading zero (for example, 1). Use %d if this is the only character in your user-defined numeric format.
|
|
dd
|
Displays the day as a number with a leading zero (for example, 01).
|
|
ddd
|
Displays the day as an abbreviation (for example, Sun).
|
|
dddd
|
Displays the day as a full name (for example, Sunday).
|
|
M
|
Displays the month as a number without a leading zero (for example, January is represented as 1). Use %M if this is the only character in your user-defined numeric format.
|
|
MM
|
Displays the month as a number with a leading zero (for example, 01/12/01).
|
|
MMM
|
Displays the month as an abbreviation (for example, Jan).
|
|
MMMM
|
Displays the month as a full month name (for example, January).
|
|
gg
|
Displays the period/era string (for example, A.D.)
|
|
h
|
Displays the hour as a number without leading zeros using the 12-hour clock (for example, 1:15:15 PM). Use %h if this is the only character in your user-defined numeric format.
|
|
hh
|
Displays the hour as a number with leading zeros using the 12-hour clock (for example, 01:15:15 PM).
|
|
H
|
Displays the hour as a number without leading zeros using the 24-hour clock (for example, 1:15:15). Use %H if this is the only character in your user-defined numeric format.
|
|
HH
|
Displays the hour as a number with leading zeros using the 24-hour clock (for example, 01:15:15).
|
|
m
|
Displays the minute as a number without leading zeros (for example, 12:1:15). Use %m if this is the only character in your user-defined numeric format.
|
|
mm
|
Displays the minute as a number with leading zeros (for example, 12:01:15).
|
|
s
|
Displays the second as a number without leading zeros (for example, 12:15:5). Use %s if this is the only character in your user-defined numeric format.
|
|
ss
|
Displays the second as a number with leading zeros (for example, 12:15:05).
|
|
F
|
Displays fractions of seconds. For example ff will display hundredths of seconds, whereas ffff will display ten-thousandths of seconds. You may use up to seven f symbols in your user-defined format. Use %f if this is the only character in your user-defined numeric format.
|
|
T
|
Uses the 12-hour clock and displays an uppercase A for any hour before noon; displays an uppercase P for any hour between noon and 11:59 P.M. Use %t if this is the only character in your user-defined numeric format.
|
|
tt
|
Uses the 12-hour clock and displays an uppercase AM with any hour before noon; displays an uppercase PM with any hour between noon and 11:59 P.M.
|
|
y
|
Displays the year number (0-9) without leading zeros. Use %y if this is the only character in your user-defined numeric format.
|
|
yy
|
Displays the year in two-digit numeric format with a leading zero, if applicable.
|
|
yyy
|
Displays the year in four digit numeric format.
|
|
yyyy
|
Displays the year in four digit numeric format.
|
|
z
|
Displays the timezone offset without a leading zero (for example, -8). Use %z if this is the only character in your user-defined numeric format.
|
|
zz
|
Displays the timezone offset with a leading zero (for example, -08)
|
|
zzz
|
Displays the full timezone offset (for example, -08:00)
|
Example
The following are examples of user-defined date and time formats for December 7, 1958, 8:50 PM, 35 seconds:
|
Format
|
Displays
|
|
M/d/yy
|
12/7/58
|
|
d-MMM
|
7-Dec
|
|
d-MMMM-yy
|
7-December-58
|
|
d MMMM
|
7 December
|
|
MMMM yy
|
December 58
|
|
hh:mm tt
|
08:50 PM
|
|
h:mm:ss t
|
8:50:35 P
|
|
H:mm
|
20:50
|
|
H:mm:ss
|
20:50:35
|
|
M/d/yyyy H:mm
|
12/7/1958 20:50
|
|
Visual Basic Language Reference
|
|
User-Defined Numeric Formats (Format Function)
The following table identifies characters you can use to create user-defined number formats. These may be used to build the style argument for the Format function:
|
Character
|
Description
|
|
None
|
Displays the number with no formatting.
|
|
(0)
|
Digit placeholder. Displays a digit or a zero. If the expression has a digit in the position where the zero appears in the format string, display it; otherwise, displays a zero in that position.
If the number has fewer digits than there are zeros (on either side of the decimal) in the format expression, displays leading or trailing zeros. If the number has more digits to the right of the decimal separator than there are zeros to the right of the decimal separator in the format expression, rounds the number to as many decimal places as there are zeros. If the number has more digits to the left of the decimal separator than there are zeros to the left of the decimal separator in the format expression, displays the extra digits without modification.
|
|
(#)
|
Digit placeholder. Displays a digit or nothing. If the expression has a digit in the position where the # character appears in the format string, displays it; otherwise, displays nothing in that position.
This symbol works like the 0 digit placeholder, except that leading and trailing zeros aren't displayed if the number has fewer digits than there are # characters on either side of the decimal separator in the format expression.
|
|
(.)
|
Decimal placeholder. The decimal placeholder determines how many digits are displayed to the left and right of the decimal separator. If the format expression contains only # characters to the left of this symbol; numbers smaller than 1 begin with a decimal separator. To display a leading zero displayed with fractional numbers, use zero as the first digit placeholder to the left of the decimal separator. In some locales, a comma is used as the decimal separator. The actual character used as a decimal placeholder in the formatted output depends on the number format recognized by your system. Thus, You should use the period as the decimal placeholder in your formats even if you are in a locale that uses a comma as a decimal placeholder. The formatted string will appear in the format correct for the locale.
|
|
(%)
|
Percent placeholder. Multiplies the expression by 100. The percent character (%) is inserted in the position where it appears in the format string.
|
|
(,)
|
Thousand separator. The thousand separator separates thousands from hundreds within a number that has four or more places to the left of the decimal separator. Standard use of the thousand separator is specified if the format contains a thousand separator surrounded by digit placeholders (0 or #). A thousand separator immediately to the left of the decimal separator (whether or not a decimal is specified) or as the rightmost character in the string means "scale the number by dividing it by 1,000, rounding as needed."
For example, you can use the format string "##0,." to represent 100 million as 100,000. Numbers smaller than 1,000 but greater or equal to 500 are displayed as 1, and numbers smaller than 500 are displayed as 0. Two adjacent thousand separators in this position scale by a factor of 1 million, and an additional factor of 1,000 for each additional separator.
Multiple separators in any position other than immediately to the left of the decimal separator or the rightmost position in the string are treated simply as specifying the use of a thousand separator. In some locales, a period is used as a thousand separator. The actual character used as the thousand separator in the formatted output depends on the Number Format recognized by your system. Thus, You should use the comma as the thousand separator in your formats even if you are in a locale that uses a period as a thousand separator. The formatted string will appear in the format correct for the locale.
|
|
(:)
|
Time separator. In some locales, other characters may be used to represent the time separator. The time separator separates hours, minutes, and seconds when time values are formatted. The actual character used as the time separator in formatted output is determined by your system settings.
|
|
(/)
|
Date separator. In some locales, other characters may be used to represent the date separator. The date separator separates the day, month, and year when date values are formatted. The actual character used as the date separator in formatted output is determined by your system settings.
|
|
(E- E+ e- e+)
|
Scientific format. If the format expression contains at least one digit placeholder (0 or #) to the left of E-, E+, e-, or e+, the number is displayed in scientific format and E or e is inserted between the number and its exponent. The number of digit placeholders to the left determines the number of digits in the exponent. Use E- or e- to place a minus sign next to negative exponents. Use E+ or e+ to place a minus sign next to negative exponents and a plus sign next to positive exponents. You must also include digit placeholders to the right of this symbol to get correct formatting.
|
|
- + $ ( )
|
Literal characters. These characters are displayed exactly as typed in the format string. To display a character other than one of those listed, precede it with a backslash (\) or enclose it in double quotation marks (" ").
|
|
(\)
|
Displays the next character in the format string. To display a character that has special meaning as a literal character, precede it with a backslash (\). The backslash itself isn't displayed. Using a backslash is the same as enclosing the next character in double quotation marks. To display a backslash, use two backslashes (\\).
Examples of characters that can't be displayed as literal characters are the date-formatting and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, and :), the numeric-formatting characters (#, 0, %, E, e, comma, and period), and the string-formatting characters (@, &, <, >, and !).
|
|
("ABC")
|
Displays the string inside the double quotation marks (" "). To include a string in the style argument from within code, you must use Chr(34) to enclose the text (34 is the character code for a quotation mark (")).
|
Example
The following table contains some sample format expressions for numbers. (These examples all assume that your system's locale setting is English-U.S.) The first column contains the format strings for the Style argument of the Format function; the other columns contain the resulting output if the formatted data has the value given in the column headings.
|
Format (Style)
|
"5" formatted as
|
"-5" formatted as
|
"0.5" formatted as
|
|
Zero-length string ("")
|
5
|
-5
|
0.5
|
|
0
|
5
|
-5
|
1
|
|
0.00
|
5.00
|
-5.00
|
0.50
|
|
#,##0
|
5
|
-5
|
1
|
|
$#,##0;($#,##0)
|
$5
|
($5)
|
$1
|
|
$#,##0.00;
($#,##0.00)
|
$5.00
|
($5.00)
|
$0.50
|
|
0%
|
500%
|
-500%
|
50%
|
|
0.00%
|
500.00%
|
-500.00%
|
50.00%
|
|
0.00E+00
|
5.00E+00
|
-5.00E+00
|
5.00E-01
|
|
0.00E-00
|
5.00E00
|
-5.00E00
|
5.00E-01
|
There are currently no comments, be the first to post one.
|
|
|
|
|
 |
|  |
|
 |
|  |
|
|
LatestArticles
|
 |
| Changing Granularity of Leaf Level Calculations in SSAS Tabular by Jason Thomas |
| | Finding Nearest Stores using SSRS Map Reports by Jason Thomas |
| | Heat Maps for SSRS using Map Control by Jason Thomas |
| | Parameters for Analysis Services Reporting: Introduction, Pt. 3 by William Pearson | BI Architect Bill Pearson continues an extended examination of parameterization within Analysis Services reports. In this, Part 3 of the article, we continue to get hands-on practice cr...
| | Parameters for Analysis Services Reporting: Introduction, Pt. 2 by William Pearson | BI Architect Bill Pearson continues an extended examination of parameterization within Analysis Services reports. In this, Part 2 of the article, we continue to get hands-on practice cr...
| | Using Annotation Tables in SSAS to Show Last Processed Time and Latest Data Updates as a Measure in a Cube by John Hall |
| | Using Color in SSRS Charts by Melissa Coates | Effective data presentation techniques help users interpret information quickly and reliably. Layout, formatting, sizing, labeling, and other report elements may all be used to facilitate ...
| | Is TOAD faster than BIDS Query Builder? by John Hall |
| | SSRS: Unexplained Warning “This field is missing from the returned result set from the data source” And Checking a Field for Null Exception by John Hall | If you ever see the warning message “This field is missing from the returned result set form the data source” and get unexplained #Errors in columns on your report it may be from SSAS not returning a ...
| | Beyond Excel pivot tables: Leveraging cube formulas with MDX by Javier Guillen | PowerPivot and DAX are a powerful technologies, but there is still a good amount of work that can be done with traditional cube functions. In its current version, PowerPivot lacks the concept of ...
|
|
|
|
|
|
 |
|  |
|