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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live 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?
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 35 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 134 | |
| 110 | |
| 59 | |
| 39 | |
| 32 |