View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
TheWizEd TheWizEd is offline
external usenet poster
 
Posts: 8
Default Bitwise shift in VBA

How do you perform a bitwise shift in VBA (Excel)?

I have seen an operator in some VB code like this.

x = y << 8 ' I believe this mean shift y 8 bits to the right

But this is not in VBA. Any suggestions?