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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have created a measure which gives me first order date of the customer with respect to each item or product
Solved! Go to Solution.
Hi @komald ,
Please try the measure and show items when the measure is not blank.
Measure =
VAR FirDate =
CALCULATE (
MIN ( New_Product_Item[FactSales.Posting Date] ),
ALLSELECTED ( New_Product_Item[FactSales.Posting Date] )
)
RETURN
COUNTROWS (
FILTER ( New_Product_Item, New_Product_Item[FactSales.Posting Date] <> FirDate )
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @komald ,
Please try the measure and show items when the measure is not blank.
Measure =
VAR FirDate =
CALCULATE (
MIN ( New_Product_Item[FactSales.Posting Date] ),
ALLSELECTED ( New_Product_Item[FactSales.Posting Date] )
)
RETURN
COUNTROWS (
FILTER ( New_Product_Item, New_Product_Item[FactSales.Posting Date] <> FirDate )
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @komald
You may try
Sales Quantity =
VAR FirstSalesDate = [FOD_WRT_PRODUCT_CUSTOMER]
RETURN
CALCULATE (
SUM ( New_Product_Item[FactSales.Quantity] ),
New_Product_Item[FactSales.Posting Date] <> FirstSalesDate
)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
6 | |
4 | |
3 |