How can I format bytes a cell in Excel as KB, MB, GB etc?

前端 未结 16 1651
忘了有多久
忘了有多久 2020-12-22 18:46

I have a value in a cell that\'s in bytes. But nobody can read 728398112238. I\'d rather it say 678.37GB

To write a formula to format it relatively easy (here\'s one

16条回答
  •  旧时难觅i
    2020-12-22 18:57

    Less than Tera will write on GB & more than 999 GB write on TB

    [<1000]0" GB";[>999]0.0," TB"

    OR

    [<1000]0" GB";[>=1000]0.0," TB"

提交回复
热议问题