Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I need a DAX measure wich shows me a flag (1 or 0) if a customer (DimCustomer) bought the product "A" someday (for the first time) and later (doesn't matter when) have bought or product "B" or "C"
Measure1: Flag (1 or 0) in their customer names if bought
Measure2: When was the first time that they bought product B or C
Basicly I have a FactSales, DimCustomer, DimDate and Dimproduct
Can someone help me?
Solved! Go to Solution.
Hi @EvertonRamone,
Maybe you can try to use below formulas:
#1,
Measure1 =
VAR currCustomer =
SELECTEDVALUE ( DimCustomer[Customer] )
RETURN
IF (
COUNTROWS ( FILTER ( ALLSELECTED ( Table ), [Customer] = currCustomer ) )
> 0,
1,
0
)
#2,
measrue 2
=
VAR currCustomer =
SELECTEDVALUE ( DimCustomer[Customer] )
RETURN
CALCULATE (
MIN ( DimCustomer[Date] ),
FILTER (
ALLSELECTED ( Table ),
[Customer] = currCustomer
&& [Product] IN { "B", "C" }
)
)
If above not help, please share some sample data to test.
Regards,
Xiaoxin Sheng
Hi @EvertonRamone,
Maybe you can try to use below formulas:
#1,
Measure1 =
VAR currCustomer =
SELECTEDVALUE ( DimCustomer[Customer] )
RETURN
IF (
COUNTROWS ( FILTER ( ALLSELECTED ( Table ), [Customer] = currCustomer ) )
> 0,
1,
0
)
#2,
measrue 2
=
VAR currCustomer =
SELECTEDVALUE ( DimCustomer[Customer] )
RETURN
CALCULATE (
MIN ( DimCustomer[Date] ),
FILTER (
ALLSELECTED ( Table ),
[Customer] = currCustomer
&& [Product] IN { "B", "C" }
)
)
If above not help, please share some sample data to test.
Regards,
Xiaoxin Sheng
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 19 | |
| 19 | |
| 17 | |
| 11 |
| User | Count |
|---|---|
| 59 | |
| 55 | |
| 42 | |
| 40 | |
| 30 |