How about this? I formatted all your concatenated data cells to text. I also copy and pasted text only all your data because it was looking for a file on your desktop to get data from. So just look at the conditional formatting and replicate on your sheet if you it suits your needs.
Basically, the conditional format equation is:
Code:
=LEFT(H4,1)+RIGHT(H4,1)>$D4
Of course, this will only work if you only have single digit concatenation. If that assumption is not valid, then we can modify the equation to account for it:
Code:
=LEFT(H4,FIND("/",H4)-1)+RIGHT(H4,LEN(H4)-FIND("/",H4))>$D4