Here is a Starting Point :
Write the 14 numbers around a circle equally , clockwise , & also write the (Modulo 7) along with the numbers around the circle.
$01,02,03,04,05,06,07,08,09,10,11,12,13,14$
$01,02,03,04,05,06,00,01,02,02,04,05,06,00$
Now choose 7 elements which add up to a multiple of 7 , in other words $(0 \mod 7)$.
You can check that by rotating & selecting the successors of all the elements, you will still have a multiple of 7 , in other words $(0 \mod 7)$. This way you get more Solutions.
You can easily see that, given a Solution, you can always find at least 1 element which has 1 unused successor element clockwise.
If you exchange that element with the successor element, you will get 1 more than a multiple of 7, in other words $(1 \mod 7)$.
You can repeat this to get $(2 \mod 7)$ & $(3 \mod 7)$ etc.
Given a Solution, you can get more Solutions with the rotation & you can get more non-solutions with the increment.
This way , you can get all Possible 7-element subsets.
It is a simple matter to see how many 7-element subsets there are & how many 7-element subsets are with $(0 \mod 7)$, how many 7-element subsets are with $(1 \mod 7)$, how many 7-element subsets are with $(2 \mod 7)$, how many 7-element subsets are with $(3 \mod 7)$, ....