I want to get msgbox the value of selected cells in a table.
Any hint how to do it?
Thanks.

    Dim Cell As Range
    For Each Cell In Selection.Cells
        MsgBox Cell.Cells.Value
    Next
Failed attempt. Thanks.