Forum Discussion
hershey
3 years agoNew Member
New Count column in matrix
Hi, I've the following results in matrix table I'd like to add a new Count column to indicate total count of customers with spending above or equal 100, results should be as below. ...
- 3 years ago
hershey
Please refer to attached sample fileSpending = VAR CurrentSpending = [AvgSales] VAR T1 = ADDCOLUMNS ( VALUES ( 'fct_tst'[businessday_YYYY-MM-DD].[Month] ), "@Spending", [AvgSales] ) VAR T2 = FILTER ( T1, [@Spending] >= 80 ) VAR CountAbove80 = FORMAT ( COUNTROWS ( T2 ), "#" ) RETURN IF ( HASONEVALUE ( 'fct_tst'[businessday_YYYY-MM-DD].[Month] ), CurrentSpending, CountAbove80 )
hershey_ash
3 years agoRegular Visitor
Hi tamerj1, works perfectly........
one last Q, Activate the column total and rename it "Count" ---> where do i rename this? Currently it's shown as 'Total'
tamerj1
Community Champion
3 years agohershey_ash
Select the visual and follow steps in the screenshot. Please note that I've posted two solutions. The 2nd one sums the counts therefore can be used in a card visual in case needed.