Description Usage Arguments Details Value Author(s) See Also Examples
Create an DataFormat object, useful when working with cell styles.
1 2 3 |
df |
An DataFormat object, as returned by |
x |
a character value specifying the data format. |
Specifying the dataFormat
argument allows you to format the cell.
For example, "#,##0.00" corresponds to using a comma separator for powers of
1000 with two decimal places, "m/d/yyyy" can be used to format dates and is
the equivalent of 's MM/DD/YYYY format. To format datetimes use "m/d/yyyy
h:mm:ss;@". To show negative values in red within parantheses with two
decimals and commas after power of 1000 use "#,##0.00_);[Red](#,##0.00)". I
am not aware of an official way to discover these strings. I find them out
by recording a macro that formats a specific cell and then checking out the
resulting VBA code. From there you can read the dataFormat
code.
DataFormat
returns a list one component dataFormat, and a
class attribute "DataFormat". DataFormat objects are used when constructing
cell styles.
is.DataFormat
returns TRUE
if the argument is of class
"DataFormat" and FALSE
otherwise.
Adrian Dragulescu
CellStyle
for using the a DataFormat
object.
1 | df <- DataFormat("#,##0.00")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.