All VBA Functions

Here is a list of all the functions that Code4Engineers has in this wiki.

Function Aweighting(Freq As Double) As Double If NumberArg < 0 Then ' Evaluate argument. Exit Function ' Exit to calling procedure. Else If Freq > 0 Then...
Function dB2Pa(dB As Double) dB2Pa = 0.00002 * 10 ^ (dB / 20) End Function Function Pa2dB(Pa As Double) Pa2dB = 20 * Log(Pa / 0.00002) / Log(10) End Function Note that there are two...
Function dBsum(dBcells, Coherent) ' Sum dB values as 10*log(10^(dB1/10)+10^(dB2/10)+...) for Coherent=FALSE Dim dB As Range If Coherent = False Then tot = 0 For Each dB In dBcells...
page_revision: 1, last_edited: 1209063933|%e %b %Y, %H:%M %Z (%O ago)
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License