Dashtable: is it possible to filter on row_index and column_index at the same time?

Actually, an answer was provided here: Is it possible to style multiple headers separately?

E.g provided:

    style_header_conditional=[
    { 'if': { 'column_type': 'numeric' }, 'backgroundColor': 'magenta' },
    { 'if': { 'header_index': 2 }, 'backgroundColor': 'orange' },
    { 'if': { 'column_id': 'Complaint ID', 'header_index': 0 }, 'backgroundColor': 'red' },
    { 'if': { 'column_id': 'Complaint ID', 'header_index': 1 }, 'backgroundColor': 'pink' },
    { 'if': { 'column_id': 'Complaint ID', 'header_index': 2 }, 'backgroundColor': 'yellow' },
]

Same logic can be applied on cells & data.