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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
sclencioco
Helper I
Helper I

IF Then Else function applicable?

Good morning.

 

Can someone help me on constructin DAX formula for my reporting.

 

I have (1)Average Ticket Score and (2)Average CSAT Score

 

I have to compute for the Overall score based on this formula: OV Score = ([Average Score] * 0.8) + ([Average CSAT] * 0.2).

 

csat.JPG

 

 

Scenario: If there are no Average CSAT score, it should reflect the Actual Ticket Score value on OVR Score.

 

csat2.JPG

 

Hoping for anyone's assistance. Thank you.

 

 

 

1 ACCEPTED SOLUTION
GilbertQ
Super User
Super User

Hi @sclencioco

 

You could create a new measure, which will look for a BLANK value, and if BLANK is TRUE then RESULT 1 else RESULT 2

 

Here is an example you could use below.

 

New Measure = IF(ISBLANK([Average Score]),[Actual Ticket Score],([Average Score] * 0.8) + ([Average CSAT] * 0.2))




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

Proud to be a Super User!







Power BI Blog

View solution in original post

3 REPLIES 3
GilbertQ
Super User
Super User

Hi @sclencioco

 

You could create a new measure, which will look for a BLANK value, and if BLANK is TRUE then RESULT 1 else RESULT 2

 

Here is an example you could use below.

 

New Measure = IF(ISBLANK([Average Score]),[Actual Ticket Score],([Average Score] * 0.8) + ([Average CSAT] * 0.2))




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

Proud to be a Super User!







Power BI Blog

Hi @GilbertQ

 

Thank you for your assistance. I was able to use the formula and appreciate the result.

 

 

Hi @sclencioco

 

Happy to help and solve your issue.





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

Proud to be a Super User!







Power BI Blog

Helpful resources

Announcements
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