@lcharlwood
Distinct clicks on Campaign is based on source ids, not on recipients.
Lets say if you have two links in your delivery, and clicked on both of them, you will see two distinct clicks.
You can see the formula provided in doc Indicator Calculation
if you are looking at @personclick(Distinct clicks on the population reached), the formula is Countdistinct(Iif([url/@type]=1, @source-id, 0))
Source id is unique to each link, hence if you click on two different links in same email , your distinct click count will be 2.
And the percentage of distinct clicks will be @distinctClicks whose formla is percent([indicators/@personClick], [indicators/@success])
personclick is 2 in your case(if you clicked on two different links), and success is only one(only sent to you), which makes 200% of distinct clicks.
If you have 5 links and clicked on all of them , you should see 500% distinct clicks. Thanks!