There are two columns. one has some names of tables and second one has its values.
Dim rng As Range
Set rng = [AH3:AH50] ' <-- adjust to your requirements
If Application.WorksheetFunction.Max(rng) > 95 Then
MsgBox "tables has sixe more than 95"
End If
Help required is:
1. Msgbox should also display the actual value of the cell it finds more than 95.
2. Also it should display the name of the corresponding table for which it is displaying the value in step one.
msgbox output should be:
"ABCD table has current size:96.6"