Trying to write in the cell the following code, using VBA:
=countif(Table1[@[Jan]:[Dec]];"<>0")
I've tried both ways I found on stackoverflow:
=countif(Table1[@[Jan]:[Dec]];""<>0"")
=countif(Table1[@[Jan]:[Dec]];" & Chr(34) & "<>0" & Chr(34) & ")
Neither of them worked. Any ideas?