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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
apurva11thakur
Microsoft Employee
Microsoft Employee

DAX Help

Hi All,

I have two requirement were I have to find difference between Engineer to Customer response and Customer to Engineer response. Example : If the engineer has responded multiple times then we have to take the difference of the latest response against customer response and vice versa.

 

Please find the data table below :

 

TicketIdNameConversationTimeDiff

TicketId

NameConversationTimeDiff
ABCEngineer01-04-2020 17:36 ABCEngineer01-04-2020 17:36 
ABCEngineer01-04-2020 17:43 ABCEngineer01-04-2020 17:43 
ABCCustomer01-04-2020 20:04141ABCCustomer01-04-2020 20:04 
ABCCustomer01-04-2020 20:13 ABCCustomer01-04-2020 20:13 
ABCCustomer01-04-2020 20:13 ABCCustomer01-04-2020 20:13 
ABCEngineer02-04-2020 13:19 ABCEngineer02-04-2020 13:191026
ABCCustomer02-04-2020 16:42203ABCCustomer02-04-2020 16:42 
ABCEngineer02-04-2020 18:54 ABCEngineer02-04-2020 18:54132
ABCCustomer05-04-2020 15:454131ABCCustomer05-04-2020 15:45 
ABCCustomer05-04-2020 15:45 ABCCustomer05-04-2020 15:45 
ABCEngineer07-04-2020 10:49 ABCEngineer07-04-2020 10:492584

 

I have highlighted the required ones and non-highlighted ones are to be ignored.

Reply or ping me for more details and possible solution.

Thanks in advance

4 REPLIES 4
Anonymous
Not applicable

HI @apurva11thakur,

You can try to use the following measure formula to calculate between nearest different users to get the diff:

measure =
VAR currName =
    SELECTEDVALUE ( Table[Name] )
VAR currDate =
    MAX ( Table[ConversationTime] )
VAR _next =
    CALCULATE (
        MIN ( Table[ConversationTime] ),
        FILTER (
            ALLSELECTED ( Table ),
            [Name] <> currName
                && [ConversationTime] > currDate
        ),
        VALUES ( Table[TicketId] )
    )
RETURN
    DATEDIFF ( currDate, _next, SECOND )

Regards,

Xiaoxin Sheng

Hi @Anonymous ,

 

I am not looking for the complete diference between the conversationtime column. I am looking for immediate difference between "Engineer" and "Customer" as well as "Customer" and "Engineer" column.

 

Hope i am clear with requirement.

File.PNG

 

Thanks,

Apurva

 
Anonymous
Not applicable

Hi @apurva11thakur,

My formula can use to find out the next records which not has the same name as the current name, it should suitable for your requirement.

In addition, did these fields exist in the same table? If this is a case, you only need to replicate it and replace its name field and date fields.

Regards,

Xiaoxin Sheng

Hi @Anonymous,

 

Yes i have TicketId, ConversationTime and Name in the same table. Other are custom columns which i have created to provide you my requirement.

 

Thanks & Regards,

Apurva

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.