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.
Hi,
I have a report where I link a table with sales orders lines, to a table with delivery lines
because 1 sales order line can have one or more delivery lines, and I am only interested in the total delivered quantity, I have made an aggregate field on the sum of the delivery lines quantity field.
that works well, if there is at least one delivery line.
But I also want to see a record for a sales order line, if there is no delivery line.
If I wasn't grouping the quantity field, I could use the 'show items with no data' option.
But on a grouped field, this option is not available.
So how do I solve this problem?
thx,
Tom
Solved! Go to Solution.
I'm not sure what you mean by 'grouped field'. How have you done the aggregation? You still be able to set 'show items with no data' on the sales order line field? And just use a measure for:
Qty Delivered = SUM(DeliveryTable[Qty])
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Hi @tvanover ,
Before grouping, it exists in the empty value row, so you can display the show items with no data option
Once grouped, the null values are summarized and cannot be displayed
If my answer is not what you need, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I'm not sure what you mean by 'grouped field'. How have you done the aggregation? You still be able to set 'show items with no data' on the sales order line field? And just use a measure for:
Qty Delivered = SUM(DeliveryTable[Qty])
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com