I'm trying to count occurrences of a partial match text string within cells in table columns, where the column header contains specific text.
For example, for all the columns in my table 'Data_Table' between column [Q1This] and column [Q958Task] where the header contains ends in the text "Task", and the cell value is zero, I thought this would do it:
...but I get a value error
Anybody know how to do this?
For example, for all the columns in my table 'Data_Table' between column [Q1This] and column [Q958Task] where the header contains ends in the text "Task", and the cell value is zero, I thought this would do it:
Excel Formula:
=countifs(
Data_Table[[#Headers],[Q1This]:[Q58Task]],"*Task",
Data_Table[[Q1This]:[Q58Task]],"*texttofind*")
...but I get a value error
Anybody know how to do this?