A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You can do this with Macros.
- Press Alt+F11
- Click on the sheet on the left to which you want to make this adjustment (Say Sheet4)
- On the right (editor window), at the top you see General written and a drop down.
- Select the drop down to "Worksheet". In the next drop down, select "Change".
- Paste the code below in the editor window.
Private Sub Worksheet_Change(ByVal Target As Range)
Set Target = ActiveCell
Cells.RowHeight = 15
End Sub
- Save the file
There you go!
Thanks
Avnav