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
Hello everyone, I am trying to get the total price for a specifict column.
I have a Power Bi report that pulls the data from orders that are invoiced by the current date.
Some of those orders that get invoiced are drop shipments and I would like to know the difference in dollars between what we ship from our facility vrs what was dropped shipped.
I would like to create a calculated column that gives me the price of any BOL that has data under the drop shipment column.
Solved! Go to Solution.
I think a simple DAX will do your favor:
Column = IF(ISBLANK([DROPSHIP]) , 0 , Table[Price])
Best,
Paul
I think a simple DAX will do your favor:
Column = IF(ISBLANK([DROPSHIP]) , 0 , Table[Price])
Best,
Paul
Not sure if I am answering your question, but I have a couple ideas.
If you want a calculated column with only the amounts that have a dropship marker, here is a formula I would use:
Column = IF(TableName[DROPSHIP]=BLANK() , 0 , TableName[Price] * TableName[Quantity])
Otherwise, If you dont constantly need that info, you can just use the visual filters to show DROPSHIP "is not blank".
Hope this helps.
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 | |
| 82 | |
| 71 | |
| 50 | |
| 46 |