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.
What I am looking at are rows of sales orders with various hardware options and software options. Each option shows up as it's own line item. So the sales order numbers will repeat for each product included in that order.
What I want to do is count for each unqiue combination of a hardware (found in one column) and software (found in another column). The Excel would look somethign like COUNTIF(and(HW1, SW1) with another column COUNTIF(and(HW1, SW2), etc.
Basics of what I am looking at:
I've tried doing a calculate with filter and it seems not to work and frankly I don't know much about DAX stuff.
Any help would be apprecited. Thanks!
Hi @Anonymous,
Could you post your desired result if possible?
Regards,
Daniel He
I would probably attack this with a GENERATEALL(VALUES([Hardware]),VALUES([Software])).