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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have a table with 3 columns, Item, Unit of Measure, and Quantity.
| Item | Unit of Measure | Quantity |
| A | kg | 1 |
| B | mg | 1000000 |
| C | mg | 1000000 |
| A | mg | 1000000 |
I want to add a measure to sum the quantities, but differently depending on the Unit of Measure for each row. If Unit of Measure = "kg", then Quantity X 1000000, else Quantity.
The resulting table would look like the following:
| Item | Total |
| A | 2000000 |
| B | 1000000 |
| C | 1000000 |
Solved! Go to Solution.
Hi @Anonymous
Try this, where Table1 is the table you show:
1. Set Table1[ID] in the rows of a matrix visual
2. Create this measure and place it in values of the matrix:
Measure =
SUMX (
Table1,
IF (
Table1[Unit of Measure] = "kg",
Table1[Quantity] * 1000000,
Table1[Quantity]
)
)
So, something like:
Measure =
VAR __table = SUMMARIZE('Table4',[Item],[Unit of Measure],"__quantity",IF([Unit of Measure]="kg",SUM([Quantity])*1000000,SUM([Quantity])))
RETURN
SUMX(__table,[__quantity])
?
See attached Table 4, Page 3
So, something like:
Measure =
VAR __table = SUMMARIZE('Table4',[Item],[Unit of Measure],"__quantity",IF([Unit of Measure]="kg",SUM([Quantity])*1000000,SUM([Quantity])))
RETURN
SUMX(__table,[__quantity])
?
See attached Table 4, Page 3
Hi @Anonymous
Try this, where Table1 is the table you show:
1. Set Table1[ID] in the rows of a matrix visual
2. Create this measure and place it in values of the matrix:
Measure =
SUMX (
Table1,
IF (
Table1[Unit of Measure] = "kg",
Table1[Quantity] * 1000000,
Table1[Quantity]
)
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 81 | |
| 66 | |
| 50 | |
| 45 |