Friday, August 10, 2018
OPTIMASI META TAG DAN DATA TERSTRUKTUR BLOGGER
OPTIMASI META TAG DAN DATA TERSTRUKTUR BLOGGER
Another simple function... there are other ways to do it, but this one seems faster to me
This function takes away errors in formulas and replace them for something
more meaningful (a string defined by the user)
example: quitarerror(1/0;"you cant divide by zero")
result:"you cant divide by zero"
Copyright, Andr�s Gonz�lez, 2008
Function quitarerror(dato As Variant, reemplazo As Variant) As Variant
If IsError(dato) = True Then
quitarerror = reemplazo
Else
quitarerror = dato
End If