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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Mond_Ed07
Frequent Visitor

Interaction count per customer with respect to time and date

Hi, everyone. 
I'm new to power BI and I don't know how to make the "InteractionCounterPerRow" column to  function properly without the numbers being repeated. Below are the columns and functions that I am using. Any relevant feedbacks and comments would help. Thanks!.

Mond_Ed07_0-1702889854244.png

Mond_Ed07_1-1702889966707.png

 

 

1 ACCEPTED SOLUTION
BeaBF
Super User
Super User

@Mond_Ed07 
InteractionCounterPerRow =
RANKX(
FILTER(
ALL(account_history),
account_history[id] = EARLIER(account_history[id])
),
account_history[Created_date],
,
ASC,
DENSE
)

BBF

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Mond_Ed07 ,

Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.

If these also don't help, please share more detailed information and description to help us clarify your scenario to test.

How to Get Your Question Answered Quickly 

Regards,

Xiaoxin Sheng

BeaBF
Super User
Super User

@Mond_Ed07 
InteractionCounterPerRow =
RANKX(
FILTER(
ALL(account_history),
account_history[id] = EARLIER(account_history[id])
),
account_history[Created_date],
,
ASC,
DENSE
)

BBF

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.