Spectrophotometers report readings as absorbance, transmittance, or percent transmittance depending on the instrument and protocol. This converter moves between all three instantly using the single defining relationship, with proper handling of the edge cases that trip people up.
How it works
Absorbance and transmittance are linked by a base-10 logarithm:
A = −log₁₀(T)
T = 10^(−A)
%T = T × 100
Edit any field and the value is converted to transmittance internally, then back
out to the other two. Because the logarithm of zero is undefined, a transmittance
of 0 corresponds to infinite absorbance and is flagged rather than shown as a
number. Transmittance above 1 (or %T above 100) and negative absorbance are
physically impossible for a normal absorbing sample and are also flagged.
Example and tips
A reading of 25 %T is T = 0.25 and A = −log₁₀(0.25) ≈ 0.602. The convenient anchor points are A = 0 at 100 %T (no absorption), A = 1 at 10 %T, and A = 2 at 1 %T. Keep working samples in the reliable A = 0.1–1.0 window; if a reading sits above A = 1, dilute and re-measure, since the relationship is logarithmic and high absorbances amplify small transmittance errors.