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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
pablors
Frequent Visitor

Distinct count by date

Hi everyone, 

 

First of all, sorry for my english, i´m not used to write in this language.

 

I have a problem with a measure. I don´t even know if i should use a measure or a calculated column. 

 

I have a table which look like this, it´s related to phone numbers which result can be a sale or not:

 

PHONE                       DATE                 SALE

600001                   01/09/2017              Y

600001                   02/09/2017              N

600002                   02/09/2017              N

600003                   03/09/2017              N

600003                   04/09/2017              Y

600004                   04/09/2017              Y

 

What i want is to paint that on a visual without making changes on the table itself. But i only want unique values by the first date. It would lok like this:

 

DATE                   SALE

01/09/2017            1

02/09/2017            0

03/09/2017            1

04/09/2017            1

 

Thanks in advange, and sorry again.

1 ACCEPTED SOLUTION

Thank you so much Eric, 

 

I found a simple solution after thinking calmly about the problem. 

 

I made a custom column and put it as the X axis in my chart. 

 

1era = CALCULATE(FIRSTDATE('Table1'[Date]); ALLEXCEPT('Table1'[Phone]))

 

Then I includes de registered phones and which are sales, and the ratio of succes

Captura.PNG

 

 

Thanks!

View solution in original post

2 REPLIES 2
Eric_Zhang
Microsoft Employee
Microsoft Employee


@pablors wrote:

Hi everyone, 

 

First of all, sorry for my english, i´m not used to write in this language.

 

I have a problem with a measure. I don´t even know if i should use a measure or a calculated column. 

 

I have a table which look like this, it´s related to phone numbers which result can be a sale or not:

 

PHONE                       DATE                 SALE

600001                   01/09/2017              Y

600001                   02/09/2017              N

600002                   02/09/2017              N

600003                   03/09/2017              N

600003                   04/09/2017              Y

600004                   04/09/2017              Y

 

What i want is to paint that on a visual without making changes on the table itself. But i only want unique values by the first date. It would lok like this:

 

DATE                   SALE

01/09/2017            1

02/09/2017            0

03/09/2017            1

04/09/2017            1

 

Thanks in advange, and sorry again.


@pablors

You can try to create a measure as below.

Measure =
VAR sales =
    CALCULATE (
        DISTINCTCOUNT ( Table1[PHONE] ),
        FILTER ( Table1, Table1[SALE] = "Y" )
    )
RETURN
    IF ( ISBLANK ( sales ), 0, sales )

Capture.PNG

Thank you so much Eric, 

 

I found a simple solution after thinking calmly about the problem. 

 

I made a custom column and put it as the X axis in my chart. 

 

1era = CALCULATE(FIRSTDATE('Table1'[Date]); ALLEXCEPT('Table1'[Phone]))

 

Then I includes de registered phones and which are sales, and the ratio of succes

Captura.PNG

 

 

Thanks!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors