It seems that the fintype is dimmed at modular level, so that unfortunately didn't solve it.
I also tried :
rb = makeReport_Fintype (NrOfClientsSeen)
rb = makeReport_Fintype (AsPercentOfMaxSeen)
__________________________
Private Function MakeReport_Fintype(Key1 As Fintype) ' __ byref argument mismatch
Debug.Print "PercentOfMaxSeen" & CountValue(DrNr, ReviewMnth).Key1
...and
rb = makeReport_Fintype ("NrOfClientsSeen")
rb = makeReport_Fintype ("AsPercentOfMaxSeen")
__________________________
Private Function MakeReport_Fintype(Key1 As String)
Debug.Print "PercentOfMaxSeen" & CountValue(DrNr, ReviewMnth).Key1 ' __ method not found
Main Topics
Browse All Topics





by: ryancysPosted on 2009-09-28 at 00:10:38ID: 25437222
try put:
Private Type as FINType
NrClientsSeen as long
AsPercentOfMax as double
..and others
end type
at the top of module (outside the Function tag) instead?