Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi Experts,
I have a table as shown in the below:
I'm trying to insert sum of 10+15+28 =53 in to Z5.
So i'm trying to create new Custom Column like:
NEW= IF(Table[C2]="Z5",Tot_A,Table[Amt])
where, Tot_A= Calculate(SUM(Table[Amt]),Table[C1]="A")
PLEASE LET ME IF THIS IS POSSIBLE WITH DAX OR IS THERE A OTHER WAY?
Solved! Go to Solution.
@Anonymous , Try a new column like
if([C2]="Z5",sumx(filter(Table, [C1]="A"),[Amt]),[Amt])
if this does not work
Can you share sample data and sample output in table format?
@Anonymous , Try a new column like
if([C2]="Z5",sumx(filter(Table, [C1]="A"),[Amt]),[Amt])
if this does not work
Can you share sample data and sample output in table format?
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 115 | |
| 106 | |
| 41 | |
| 34 | |
| 25 |