Forum Discussion

kb4514's avatar
kb4514
Frequent Visitor
6 years ago
Solved

Count a frequency measure

I have a measure which counts the number of transactions per id within a timeframe (from slicer):   mFrequency = IF(DISTINCTCOUNT(RPT_FACTORDER[TRANSACTION_NUMBER]) = BLANK(), 0,                  ...
  • sturlaws's avatar
    6 years ago

    Hi,

     

    since you need frequency on the axis, you need to add a stand-alone table with the neccessary values. And based on those values, count the number of IDs with corresponding frequency.

    This measure would look like this

    Measure =
    VAR _count =
        COUNTROWS (
            FILTER (
                ADDCOLUMNS (
                    VALUES ( 'Table'[id] );
                    "@freq";
                    VAR _trans =
                        CALCULATE ( SUM ( 'Table'[transactions] ) )
                    RETURN
                        IF ( _trans > 3; 4; _trans )
                );
                [@freq] = SELECTEDVALUE ( Frequency[F] )
            )
        )
    RETURN
        IF ( ISBLANK ( _count ); 0; _count )

    Since you have not provided any data or sample report, I have created a mockup dataset and created a demo report based on that dataset: pbix

    cheers,

    S