0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Excelでバイトの単位を変換したい

Posted at

Excelでバイトの単位を変換したい場合、CONVERT関数を利用します。

書式

CONVERT(数値,変換前単位,変換後単位)

利用できる単位

名称 単位
ヨタバイト Yibyte
ゼタバイト Zibyte
エクサバイト Eibyte
ペタバイト Pibyte
テラバイト Tibyte
ギガバイト Gibyte
メガバイト Mibyte
キロバイト kibyte
バイト byte

B2セルの値(キロバイト)をギガバイトに変換する

CONVERT(B2, "kibyte", "Gibyte")

B2セルの値(メガバイト)をバイトに変換する

CONVERT(B2, "Mibyte", "byte")

参考

環境情報

  • Microsoft® Excel® for Microsoft 365 MSO (バージョン 2410 ビルド 16.0.18129.20200) 64 ビット
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?