Image Function
The IMAGE function in Excel is used to insert an image into a cell. It takes the URL of an image as its argument and displays the image within the cell.
**Arguments** :
**source** : Required, The URL path, using an "https" protocol, of the image file. Supported file formats include BMP, JPG/JPEG, GIF, TIFF, PNG, ICO.
**alt_text** : Optional, Alternative text that describes the image for accessibility.
**sizing** : Optional, Specifies the image dimensions. There are several possible values:
- **0** : Fit the image in the cell and maintain its aspect ratio.
- **1** : Fill the cell with the image and ignore its aspect ratio.
- **2** : Maintain the original image size, which may exceed the cell boundary.
- **3** : Customize the image size by using the **height** and **width** arguments.
**height** : Optional, The custom height of the image in pixels.
**width** : Optional, The custom width of the image in pixels.