How to Use Microsoft Excel to Auto Convert KB, MB, GB, TB

In this article, we are going to use Microsoft Excel functionality to automatically convert value in KB to MB, GB and TB.

As an example, below table name DHIYA size is at 8888888888KB. You wanted to convert the value into MB, GB and TB automatically.

ABCDE
1 Table NameSize in KB Size in MB Size in GB Size in TB
2 DHIYA 8888888888 8680555.555 8477.105034 8.278422885
Size_in_MB

=CONVERT(B2,”kibyte”,”Mibyte”)

Size_in_GB

=CONVERT(C2,”Mibyte”,”Gibyte”)

Size_in_TB

=CONVERT(D2,”Gibyte”,”Tibyte”)

Reference

The syntax will be as =Convert(value,”from”,”to”)
•  value = cell from the excel. This should contain only numbers.
•  from = the source number.
•  to = the target number.
•  from / to = the prefixes will be kibyte (lowercase), Mibyte, Gibyte and Tibyte

You May Also Like

Leave a Reply?