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.
Reference conversion table
The most useful anchor points for quick mental checks:
| Absorbance (A) | Transmittance (T) | %Transmittance (%T) |
|---|---|---|
| 0.000 | 1.000 | 100 % (no absorption) |
| 0.097 | 0.800 | 80 % |
| 0.155 | 0.700 | 70 % |
| 0.222 | 0.600 | 60 % |
| 0.301 | 0.500 | 50 % |
| 0.398 | 0.400 | 40 % |
| 0.523 | 0.300 | 30 % |
| 0.699 | 0.200 | 20 % |
| 1.000 | 0.100 | 10 % |
| 2.000 | 0.010 | 1 % |
The convenient anchors to memorise: A = 0.301 at 50 %T (T = 0.5), A = 1 at 10 %T, and A = 2 at 1 %T.
Why the reliable working range matters
Most single-beam spectrophotometers produce reliable readings roughly in the A = 0.1 to 1.0 range (about 10–80 %T). Below A = 0.1 the signal difference between sample and blank is small and noise dominates. Above A = 1.0 only a tenth of the incident light reaches the detector, so tiny stray-light contributions become a significant fraction of the measured signal and readings deviate from linearity (Beer-Lambert law breaks down). For quantitative work, dilute concentrated samples until the reading falls comfortably in this window.
Absorbance versus optical density
For clear absorbing solutions, absorbance (A) and optical density (OD) are used interchangeably — both follow A = −log₁₀(T). In microbiology, OD at 600 nm (OD600) is the standard measure of bacterial culture density, where scattering rather than true absorption contributes significantly to the signal. This means OD600 does not strictly follow Beer-Lambert, but the same conversion formula is used for instrument readings regardless.
Example
A reading of 25 %T is T = 0.25 and A = −log₁₀(0.25) ≈ 0.602. If your method requires working at A < 0.5, dilute the sample roughly 3-fold to bring the absorbance down to around 0.2 and re-measure.