The following finds all the fields with those prefixes in the wiki
<$list filter="[fields[]prefix[ct-]] [fields[]prefix[cect-]]">
</$list>
The following gives me a sample of values on your wiki
<$list filter="[fields[]prefix[ct-]] [fields[]prefix[cect-]]" variable=fieldname>
<<fieldname>> values: <$list filter="[each<fieldname>get<fieldname>]"></$list><br>
</$list>
Do you want a sum of each matching fieldname or all matching fieldnames?
- In your test data it looks like each fieldname only occurs once except cect-abdomen
See reduce Operator
This lists all tiddlers containing each field
<$list filter="[fields[]prefix[ct-]] [fields[]prefix[cect-]]" variable=fieldname>
<<fieldname>> {{{ [has<fieldname>] }}}<br>
</$list>
This gives me the sum of each fieldname
<$list filter="[fields[]prefix[ct-]] [fields[]prefix[cect-]]" variable=fieldname>
<<fieldname>> {{{ [has<fieldname>] :reduce[get<fieldname>add<accumulator>] }}}<br>
</$list>
- I had to change some of your test data to confirm this
To sum all values from all fieldnames is a little more complex but do you want that?