FREQCONV

=FREQCONV(double,string,string)

value
value to convert
from
frequency string
to
frequency string

Convert a frequency e.g. mhz to ghz

lrobbo314

Well-known Member
Joined
Jul 14, 2008
Messages
3,927
Office Version
  1. 365
Platform
  1. Windows
FREQCONV converts a frequency e.g. mhz to ghz

Excel Formula:
=LAMBDA(value,from,to,
    LET(
        lbl,{"hz";"khz";"mhz";"ghz"},
        m,1000^SEQUENCE(4,,0),
        fx,LAMBDA(x,XLOOKUP(x,lbl,m,0)),
        fv,fx(from),
        tv,fx(to),
            (fv/tv)*value
    )
)

FREQ FUNCS.xlsm
JK
130.000350.00035
Sheet1
Cell Formulas
RangeFormula
J13J13=LAMBDA(value,from,to,LET(lbl,{"hz";"khz";"mhz";"ghz"},m,1000^SEQUENCE(4,,0),fx,LAMBDA(x,XLOOKUP(x,lbl,m,0)),fv,fx(from),tv,fx(to),(fv/tv)*value))(350,"hz","mhz")
K13K13=FREQCONV(350,"hz","mhz")
 
Upvote 1

Forum statistics

Threads
1,215,368
Messages
6,124,521
Members
449,169
Latest member
mm424

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top