GB to MB Calculator - Convert Gigabytes to Megabytes

Conversion History (Last 6)
Excel Formula to convert from GB to MB
Apply the formula as shown below to convert from Gigabyte to Megabyte.
A | B | C | |
---|---|---|---|
1 | Gigabyte (GB) | Megabyte (MB) | |
2 | 1 | =A2 * 1000 | |
3 |
Download - Excel Template for Gigabyte to Megabyte Conversion
If you want to perform bulk conversion locally in your system, then download and make use of above Excel template.
Python Code for GB to MB Conversion
You can use below code to convert any value in Gigabyte to Megabyte in Python.
gigabyte = int(input("Enter Gigabyte: "))
megabyte = gigabyte * 1000
print("{} Gigabyte = {} Megabyte".format(gigabyte,megabyte))
megabyte = gigabyte * 1000
print("{} Gigabyte = {} Megabyte".format(gigabyte,megabyte))
The first line of code will prompt the user to enter the Gigabyte as an input. The value of Megabyte is calculated on the next line, and the code in third line will display the result.
GB to MB to MiB Conversion Table
Gigabyte (GB) | Megabyte (MB) | Mebibyte (MiB) |
---|---|---|
1 GB | 1,000 MB | 953.67431640625 MiB |
2 GB | 2,000 MB | 1,907.3486328125 MiB |
3 GB | 3,000 MB | 2,861.02294921875 MiB |
4 GB | 4,000 MB | 3,814.697265625 MiB |
5 GB | 5,000 MB | 4,768.37158203125 MiB |
6 GB | 6,000 MB | 5,722.0458984375 MiB |
7 GB | 7,000 MB | 6,675.72021484375 MiB |
8 GB | 8,000 MB | 7,629.39453125 MiB |
9 GB | 9,000 MB | 8,583.06884765625 MiB |
10 GB | 10,000 MB | 9,536.7431640625 MiB |
100 GB | 100,000 MB | 95,367.431640625 MiB |
256 GB | 256,000 MB | 244,140.625 MiB |
500 GB | 500,000 MB | 476,837.158203125 MiB |
512 GB | 512,000 MB | 488,281.25 MiB |
1000 GB | 1,000,000 MB | 953,674.31640625 MiB |
1024 GB | 1,024,000 MB | 976,562.5 MiB |
2048 GB | 2,048,000 MB | 1,953,125 MiB |
5000 GB | 5,000,000 MB | 4,768,371.58203125 MiB |
10000 GB | 10,000,000 MB | 9,536,743.1640625 MiB |