Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 47 | |
| 35 | |
| 28 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 59 | |
| 58 | |
| 40 | |
| 22 | |
| 20 |