CompareList – Compare an argument with a list of values

CompareList – Compare an argument with a list of values

' Return the position of the argument in a list of values' or zero if the argument isn't included in the list' It works for both regular values and for objects'' This handy function can often save you a lengthy Select Case' statement or a complex series of If...ElseIf blocks'' Example: check whether a string is a valid continent name'     If CompareList(aString, "America", "Europe", "Asia", "Africa",'  "Australia") > 0 Then MsgBox "OK"Function CompareList(ByVal Arg As Object, ByVal ParamArray Values() As Object) _    As Integer    Return Array.IndexOf(Values, Arg) + 1End Function

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular