N
nyn04
I try to use the following
CountPosS = WorksheetFunction.CountIf(TradesDiff, ">0")
and I get an error messege type mismatch when I run
CountPosS = WorksheetFunction.CountIf(TradesDiff) it works
my TradesDiff is defined
Dim TradesDiff()
m= 17
ReDim TradesDiff(m)
then I run a loop to fill in the values
what do I have to do to be able to use the countif propert
CountPosS = WorksheetFunction.CountIf(TradesDiff, ">0")
and I get an error messege type mismatch when I run
CountPosS = WorksheetFunction.CountIf(TradesDiff) it works
my TradesDiff is defined
Dim TradesDiff()
m= 17
ReDim TradesDiff(m)
then I run a loop to fill in the values
what do I have to do to be able to use the countif propert