Hi Renate. I am an Excel user like you.
Someone may be able to help with a VBA solution to do this on your entry sheet, but here is a way you can accomplish what you want using a formula on a new sheet that will always be automatically sorted as you make updates on your entry sheet. I started with this mock data.
.
Open a new sheet and rename as desired. Copy your headers onto the new sheet. Then, in A2 (modify this if necessary for your layout) enter this formula.
=SORTBY(Sheet1!A2:N100,Sheet1!N2:N100,1)
Modify the ranges as appropriate. I included more rows than I had data to allow for additions to the table if that is something you need. If your data is a fixed range just use that range. The formula will automatically update any time a change is made on your source entry sheet.
.
The formula fills in 0's for all cells that do not have data. To remove them go to File>Options>Advanced>Display Options for This Worksheet and un-check Show a Zero in Cells That Have Zero Value.