Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
EvertonRamone
Helper I
Helper I

DAX

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?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.