Originally posted by rlwhealdon
Try changing
VB Code:
  1. Public Function TestType(ByVal TypeIN() As Variant) 'In Module
  2. Dim A As Integer
  3.     For A = 1 To 2
  4.         MsgBox TypeIN(A).First & TypeIN(A).Second ' Get Data
  5.         TypeIN(A).First = "Test" & A 'Set Data
  6.         TypeIN(A).Second = A 'Set Data
  7.     Next A
  8. End Function
I Get The Error
Type Mismach Array or user Defined Type Expected