Capacitance Unit Converter in Excel


0.1
Add-in Formula =PO.UnitConverter(1, "cF", "dF")
Excel Lambda =LAMBDA(x, LET( ratio, 0.1, x * ratio ) )(1)
Category Lambda =LAMBDA(x, from, to, LET( f, SWITCH(from, "F", 1, "EF", 1000000000000000000, "GF", 1000000000, "MF", 1000000, "TF", 1000000000000, "cF", 0.01, "dF", 0.1, "fF", 1E-15, "kF", 1000, "mF", 0.001, "nF", 1E-09, "pF", 1E-12, "uF", 1E-06), t, SWITCH(to, "F", 1, "EF", 1000000000000000000, "GF", 1000000000, "MF", 1000000, "TF", 1000000000000, "cF", 0.01, "dF", 0.1, "fF", 1E-15, "kF", 1000, "mF", 0.001, "nF", 1E-09, "pF", 1E-12, "uF", 1E-06), x * f / t ) )(1, "cF", "dF")
How to save as a reusable Excel function

LAMBDA is a built-in Excel feature (Microsoft 365) that lets you create custom functions without VBA. The formulas above work as-is when pasted into a cell.

To save a LAMBDA as a reusable named function:

  1. Go to Formulas → Name Manager → New
  2. Enter a name, e.g. ConvertCapacitance
  3. In Refers to, paste the LAMBDA formula without the trailing invocation (...)
  4. Click OK

Now use =ConvertCapacitance(1, "cF", "dF") anywhere in your workbook — no add-in required.

Conversion Factors (base: F)

Unit Name Factor
F farad 1
EF exafarad 1000000000000000000
GF gigafarad 1000000000
MF megafarad 1000000
TF terafarad 1000000000000
cF centifarad 0.01
dF decifarad 0.1
fF femtofarad 1E-15
kF kilofarad 1000
mF millifarad 0.001
nF nanofarad 1E-09
pF picofarad 1E-12
uF microfarad 1E-06
An unhandled error has occurred. Reload X