The IEEE 754 decimal128 standard described here shows that it has a 17 bit combination, and a 14 bit exponent.
But in the examples shown, it uses either the upper 2 bits or upper 4 bits of the combination, and those determine the upper two bits to use in the exponent field, as well as the upper 4 bits in the actual significand. This leaves either 15 bits or 13 bits remaining in the combination, and it is unclear from the table on this page which bits from the combination actually go to the 12 lower bits of the exponent, and which bits are copied into the significand.
Some assistance here in understanding this format would be greatly appreciated
While you should refer to an authoritative source, such as the IEEE 754 standard, the Wikipedia page gives you all the information to interpret the format.
Denote the bits of the encoding by sabcdefghijklmnopqT, where s is the sign bit, a through q are bits of the combination field, and T is the trailing 110 bits.
The section “Binary integer significand field” tell you how to interpret encodings using a binary significand. It says:
Therefore, if ab is 00, 01, or 10, the exponent field is abcdefghijklmn, and the significand bits are 0opqT.
Therefore, if ab is 11 (but excluding the encodings for infinities and NaNs), then the exponent field is cdefghijklmnop and the significand bits are 100qT.
The section “Densely packed decimal significand field” tells you how to interpret encodings using a DPD significand. It says:
So the trailing 12 bits of the exponent field are fghijklmnopq. We still need the first two bits of the field.
Therefore, if ab is 00, 01, or 10, the exponent is abfghijklmnopq, and the first significand digit is cde.
Therefore, if ab is 11 (but excluding the encodings for infinities and NaNs), the exponent field is cdfghijklmnopq, and first significand digit is 100e.
In both of the DPD cases, the remaining significand digits are encoded in T.