MS Access Custom Formatting: Currency in K -


i trying create appropriate format table property of specific ms access table in order achieve display style described below. example purposes, let table name example , field trying format dollars

when example!dollars.value 567.98, wish display $0.567k. wish display 1,000.42 $1.000k.

in table storing larger values, use format property string $#,##0,\k; ($#,##0,"k)"[red];"| < $1k |"; --, displays amount in k dollars; however, values less $1k cannot displayed. not acceptable due scale of values in example table.

the intuitive solution use string $0,000\k , specify thousands separator . instead of ,. however, not know how this.

any advice appreciated!

use format property string $0\.000\k


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -