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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
mrhenderson
Frequent Visitor

First call resolution

Hello

I am trying to get a First call resolution based on if the same person calls back regarding the same issue within the next 7 days and 14 days (FCR7 & FCR14) - Below you will see a screenshot of the data I have

A column for the date they called

A colum for who took the calls

and the custom column is unique number which indicates, who called, and what the issue is

 

I want to see if the number in the custom column appears again in the next 7 days and 14 days - so that i can get the % of calls resolved the first time To calculate FCR, you need to divide the total number of calls resolved on the first attempt divided by the total number of calls received.

 

mrhenderson_0-1681311776300.png

 

1 REPLY 1
EricVieira
Regular Visitor

 

Here's the DAX measure formula to determine first call resolution based on whether the same person calls back about the same issue within the next 7 and 14 days:

 

lessCopy code
First Call Resolution = VAR _7Days = TODAY() - 7 VAR _14Days = TODAY() - 14 RETURN CALCULATE( COUNTROWS('CallTable'), FILTER( 'CallTable', 'CallTable'[Date] >= _14Days && 'CallTable'[Date] <= _7Days && 'CallTable'[Issue] = EARLIER('CallTable'[Issue]) && 'CallTable'[Person] = EARLIER('CallTable'[Person]) ) ) > 0
 

Assuming you have a table named 'CallTable' with a column 'Date' representing the date of the call, a column 'Issue' representing the issue reported in the call, and a column 'Person' representing the person who made the call.

We use the VAR function to create two variables representing the date 7 and 14 days ago from today.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 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.