Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
What would be the correct measure or custom column to get the correct TOTAL BOXES SOLD in reference to the SOLD BY.
For example, if SOLD BY= PIECE, then TOTAL BOXES SOLD=SOLD QTY/PIECES PER BOX, otherwise TOTAL BOXES SOLD.
Thanks.
Solved! Go to Solution.
@Oros ,
I am not sure whether I have understand your requirement right but this what I have come up with in a calculated column,
New Column = IF(TableName[SOLD BY] = "PIECE",TableName[SOLD QTY (BOX OR PIECE)]/TableName[PIECES PER BOX],TableName[TOTAL BOXES SOLD])
Thanks,
Arul
Hi @Oros
You can create a calculated column with the following formula
TOTAL BOXES SOLD = if(SOLD BY= "PIECE", SOLD QTY/PIECES PER BOX,SOLD QTY)
Did it work ? 👌 Mark it as a solution to help spreading knowledge 👉 A kudos would be appreciated
Can you make sure that your columns are decimal? just to check if there is a text value " in one of your rows instead of numeric values
@Oros ,
I am not sure whether I have understand your requirement right but this what I have come up with in a calculated column,
New Column = IF(TableName[SOLD BY] = "PIECE",TableName[SOLD QTY (BOX OR PIECE)]/TableName[PIECES PER BOX],TableName[TOTAL BOXES SOLD])
Thanks,
Arul
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!