i would like to implement a formula to have rows hidden or unhidden dependent on the product type, From the research i have done so far i have gathered the solution to this will be VBA. I have next to no experience with this topic how ever.
' code edited into the question from the comments
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$B$1" Then
If Range("B1").Value = "Please Select" Then
Rows([11:52]).EntireRow.Hidden = True
ElseIf Range("B1").Value = "Red" Then
Rows([11:31]).EntireRow.Hidden = False
Rows([32:52]).EntireRow.Hidden = True
ElseIf Range("B1").Value = "Blue" Then
Rows([11:31]).EntireRow.Hidden = True
Rows([32:52]).EntireRow.Hidden = False
End If
End If
End Sub
For an oversimplification of document scope the input reference will be product colour (Cell A1) and selection will use data validation (Cell B1) to of 2 choices (Red, Blue).
Essentially i would the first 10 rows to always remain visible, rows 11-31 should be visible if B1 input is 'Red' and rows 32-52 visible if B1 input is Blue.
i have tried a couple examples i have found however they seem to be out of date or involve password protection which i do not intend to use unless required. The attached image is a quick sort of over view on the desired operation,

Here is the basic syntax of how to hide rows, but you will likely need to adjust it for things like defining the sheet, and adding conditions on when to hide those first 10 rows.
Adjusting what FunThomas had mentioned you could alternatively approach it like so. However, you may want to have a button to toggle hiding the top cells which you said will always be hidden but likely want to be able to quickly and easily unhide.