Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
JAVED
Helper I
Helper I

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)

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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])

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

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])

But i have filters with A,B,C,D the output have to display only that value when i click on filters For example if i click on A it should display only A value

Anonymous
Not applicable

Sounds like you need to unpivot the A,B,C & D columns in the table in Power Query and that will give you a single column for the values of A,B,C & D and also another column that attributes A,B,C or D to the value.

 

You would then be looking at a formula like this:

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

v-qiuyu-msft
Community Support
Community Support

Hi @JAVED,

 

You can create a measure below: 

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

 

w1.PNGw2.PNG

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors