FORMAT関数とは、指定した書式に変換し返す関数です。
FORMAT関数を使うと、数値を3桁区切りにしたり、日付を年月日の形式にしたりなど、見やすくなります。
スポンサーリンク
FORMAT関数の構文
FORMAT(データ , 変換する書式 , 週の開始曜日 , 年の第1週)
データ以外は省略できます。 数値データでも、戻り値は文字列になります。
FORMAT関数をクエリで使用したサンプル
クエリデザインで、下のようにフィールドを入力します。
「人口」は数値なので右寄せで表示され、Format関数を使用した「人口数」は文字列に変換され左寄せになっています。
FORMAT関数の使用例
Format(123) |
123 |
Format(12345,"#,##0") |
12,345 |
Format(12345,"000,000") |
012,345 |
Format(12345,"0.0%") |
1234500.0% |
Format(12345,"数量:0") |
数量:12345 |
Format(12345,"\\#,##0") |
\12,345 |
Format(12345,"@@-@@@") |
12-345 |
Format(#2017/02/12 19:09:03#,"yyyy") |
2017 |
Format(#2017/02/12 19:09:03#,"yy") |
17 |
Format(#2017/02/12 19:09:03#,"mm") |
02 |
Format(#2017/02/12 19:09:03#,"m") |
2 |
Format(#2017/02/12 19:09:03#,"dd") |
12 |
Format(#2017/02/12 19:09:03#,"hh") |
19 |
Format(#2017/02/12 19:09:03#,"mm") |
09 |
Format(#2017/02/12 19:09:03#,"AM/PM hh") |
PM 07 |
Format(#2017/02/12 19:09:03#,"ss") |
03 |
Format(#2017/02/12 19:09:03#,"ddd") |
Sun |
Format(#2017/02/12 19:09:03#,"dddd") |
Sunday |
Format(#2017/02/12 19:09:03#,"ddddd") |
2017/02/12 |
Format(#2017/02/12 19:09:03#,"dddddd") |
2017年2月12日 |
Format(#2017/02/12 19:09:03#,"yyyy年mm月dd日(aaa)") |
2017年2月12日(日) |
Format(#2017/02/12 19:09:03#,"yyyy年mm月dd日(aaaa)") |
2017年2月12日(日曜日) |
Format(#2017/02/12 19:09:03#,"ggge年mm月dd日") |
平成29年02月12日 |
Format("abc",">") |
ABC |
Format("ABC","<") |
abc |
|