There's no specific question/problem, but here's my suggested code improvements. 
- Most notably, I wouldn't execute the Hiddenprocedure until you have all the rows. That way you don't have repeatedly do something that only need be completed once. This will always be the best practice when looping and manipulating data. Make changes to the sheet AFTER you have identified the range.
- With the above change, you don't need to turn off ScreenUpdating.
- The Evaluatefunction is fine, butisEmptyis probably the best option. There are probably slightly faster methods, perhaps checking multiple if-statements, but that's getting into fractions of a second over thousands of rows (probably not worth researching).
- Technically you don't really need to loop by rows. You can get by with a single cell in a row, then checking the next two over, see utilization ofOffsetto generate that range. This also creates a more dynamic than using hard-coded columns ("A"/"B"...etc")
- Longis recommended over- Integerbut this is pretty small, and I'm only mentioning it because I posted about it here.. Technically you don't even need it with the above changes.
Here's the code:
Sub HideTableRows()
    Dim c As Range, hIdeRNG As Range, WS As Worksheet
    'based on OP xlsm file.
    Set WS = Sheet4
    'used range outside of used range to avoid an if-statement on every row
    Set hIdeRNG = WS.Cells(Rows.Count, 1)
    'loops through range of single cells for faster speed
    For Each c In Range("ForecastTable[Group]").Cells
        If IsEmpty(Range(c, c.Offset(0, 2))) = 0 Then
            'only need a single member in the row.
            Set hIdeRNG = Union(hIdeRNG, c)
        End If
    Next c
    'Hides rows only if found more than 1 cell in loop
    If hIdeRNG.Cells.Count > 1 Then
        Intersect(WS.UsedRange, hIdeRNG).EntireRow.Hidden = True
    End If
End Sub
Final Thought: There's some major enhancements coming out to Excel supposedly in early 2019 that might be useful for this type of situation if you were looking for a non-VBA solution. Click here for more info from MS.