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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
Need your help cause I can't find any solution so far.
I have a matrix visual as below with 3 columns (Product, Packsize and Price). I'm trying to write Measures for Price per ml and Price per ml of smallest Packsize.
How to write dax measure for Price per ml of smallest packsize?
Solved! Go to Solution.
@Anonymous
Your first measure:
Price Per ML =
DIVIDE(
SUM(Table2[Price]),
SUM(Table2[Packsize (ml)])
)
Second measure:
Smallest Packsize =
CALCULATE(
FIRSTNONBLANKVALUE( Table2[Packsize (ml)] , [Price Per ML] ),
ALLEXCEPT( Table2 , Table2[Product] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi @Fowmy , I know frist measure but how about the second? I just see a picture.
@Anonymous
Sorry, I forgot to attach it, please check my reply now.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
Your first measure:
Price Per ML =
DIVIDE(
SUM(Table2[Price]),
SUM(Table2[Packsize (ml)])
)
Second measure:
Smallest Packsize =
CALCULATE(
FIRSTNONBLANKVALUE( Table2[Packsize (ml)] , [Price Per ML] ),
ALLEXCEPT( Table2 , Table2[Product] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |