Found the answer! At the bottom of the page.
I would like to select two items and produce the sum of both on a website. For instance, let's say each number is a book :
Row A = 1 (U$10), 2 (U$20), 3 (U$30), 4 (U$40).
Row B = 5 (U$50), 6 (U$60), 7 (U$70), 8 (U$80).
Row C = sum.
It would only be possible to select 1 item per row. If I choose, for example, 1 and 7, I would like in Row C the value (U$) of the sum for both, so in this case 80.
Styling aside, is it possible to code that selection+sum? Is there a way to do that that's not server-side, just client-side?