Forum Discussion
jochendecraene
Helper V
4 years agoCount cell that contain integers
Hi I've got a colum that contains text and integers. I'd like to know home many unique codes (integers) there are in my dataset. Can someone help me out? So I only want to count the cells with t...
- 4 years ago
Measure 3 = VAR __Table = ADDCOLUMNS('Table4',"__IsNotInt",ISERROR(INT([Column1]))) RETURN COUNTROWS(DISTINCT(SELECTCOLUMNS(FILTER(__Table,[__IsNotInt]=FALSE()),"Int",[Column1])))
jochendecraene
Helper V
4 years ago
that is giving me the same count as without the 'dsitcint' ... I made a test column with 291 times the same code. The two measures return 291 as result. I've expected the new measure to return 1 ...
Greg_Deckler
Community Champion
4 years agoMeasure 3 =
VAR __Table = ADDCOLUMNS('Table4',"__IsNotInt",ISERROR(INT([Column1])))
RETURN
COUNTROWS(DISTINCT(SELECTCOLUMNS(FILTER(__Table,[__IsNotInt]=FALSE()),"Int",[Column1])))- jochendecraene4 years ago
Helper V