Forum Discussion

JAVED's avatar
JAVED
Helper I
7 years ago
Solved

combine columns

i have 4 columns with A,B,C,D Have to create another column or measure with sum(A),count(B),Count(C),Count(D)
  • Anonymous's avatar
    Anonymous
    7 years ago

    As you've stated you need Count in your measure, substitute v-qiuyu-msft's solution with Count

     

    Measure = SUM(Table1[A])& "," & COUNT(Table1[B])&"," & COUNT(Table1[C]) &"," &  COUNT(Table1[D])