Answers for "Excel VBA to long integer"

VBA
4

excel vba convert 2 Short integers to a Long integer

Public Function MakeLong&(ByVal LoWord%, ByVal HiWord%)
  MakeLong = (HiWord * &H10000) Or (LoWord And &HFFFF&)
End Function
Posted by: Guest on May-23-2020

Code answers related to "Excel VBA to long integer"

Code answers related to "VBA"

Browse Popular Code Answers by Language