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
Anonymous
Not applicable

KPI creation

Hi,

 

I want to do a KPI that evaluates the answer rate of the evaluation process.

 

My table have 2281 unique employees, and my target is to have 75% answer rate.

 

I have the two columns, employee number and the response date. If there are no answer, it is a null value.

 

Carlos_Ruxa_BI_0-1620934490711.png

 

I want to display this rate as a KPI or Gauge visual.

 

Thanks,

 

Carlos

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous 

I build a sample with 2281 employees that number from 1 to 2281. In my sample 1825 employees have answered.

Firstly, we need to build two measures.

Answer Rate = 
VAR _CountAnswer = CALCULATE(COUNT('KPI'[Date]),ALL('KPI'))
VAR _CountAll = CALCULATE(COUNT('KPI'[Employee Number]),ALL('KPI'))
VAR _RATE = DIVIDE(_CountAnswer,_CountAll)
Return
_RATE
Target = 0.75

We need to change two measures' format as Percentage in Measure tools.

1.png

Gauge visual:

2.png

Kpi visual:

4.png

For more details about how to build a KPI or Gauge visual, you may refer to the blogs: KPI and Gauge

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous 

 

Perfect 🙂

 

Thank you.

Anonymous
Not applicable

Hi @Anonymous 

I build a sample with 2281 employees that number from 1 to 2281. In my sample 1825 employees have answered.

Firstly, we need to build two measures.

Answer Rate = 
VAR _CountAnswer = CALCULATE(COUNT('KPI'[Date]),ALL('KPI'))
VAR _CountAll = CALCULATE(COUNT('KPI'[Employee Number]),ALL('KPI'))
VAR _RATE = DIVIDE(_CountAnswer,_CountAll)
Return
_RATE
Target = 0.75

We need to change two measures' format as Percentage in Measure tools.

1.png

Gauge visual:

2.png

Kpi visual:

4.png

For more details about how to build a KPI or Gauge visual, you may refer to the blogs: KPI and Gauge

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

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