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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
SuzanneSte
Frequent Visitor

Assistance needed

Hello, I hope you can guide me on this problem.

I am attempting to count each instance an appoinmtent is created (Event Created date), but I need to exclude lines from the count if another element (invitees email address), is duplicated in the dataset. 

So firstly, I am trying to identify duplicates in the email addresses and store them in a created column

Having difficulty with that

SuzanneSte_2-1687268797272.png

 

 

 

Can you advise please 

 

1 ACCEPTED SOLUTION
some_bih
Super User
Super User

Hi @SuzanneSte  your RepEmailCol calculated column could be like below. Hope this help

RepEmailCol=
--Check_duplicate
VAR _currentvalue='events-export'[Invitee Email]
VAR _count_filtering=
COUNTROWS(
FILTER(
'events-export',
'events-export'[Invitee Email]=_currentvalue
)
)
VAR _Result=
IF(
_count_filtering>1,
"Duplicate",
"Distinct"
)
RETURN _Result





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






View solution in original post

2 REPLIES 2
SuzanneSte
Frequent Visitor

Thank you !!!

Great help

some_bih
Super User
Super User

Hi @SuzanneSte  your RepEmailCol calculated column could be like below. Hope this help

RepEmailCol=
--Check_duplicate
VAR _currentvalue='events-export'[Invitee Email]
VAR _count_filtering=
COUNTROWS(
FILTER(
'events-export',
'events-export'[Invitee Email]=_currentvalue
)
)
VAR _Result=
IF(
_count_filtering>1,
"Duplicate",
"Distinct"
)
RETURN _Result





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.