Help With Formula Showing Value

mbrown279

New Member
Joined
Sep 16, 2018
Messages
10
Hi All,


I am currently using an index/match formula to bring score data from one table to another. The problem I am having is that it is assigning a zero value in fields that have no data. This is causing an issues when I am pivoting out the column using that data.


We have two set of scores "Current Score" and "Updated Score" The updated score should reflect the same information as the current score unless it was changed. If the field is blank it should remain blank in the updated score. Below the formula that I am currently using.


Code:
=IF(ISNA(INDEX(Updated[NPS],MATCH([Conversation ID],Updated[Conversation ID],0))),"",INDEX(Updated[NPS],MATCH([Conversation ID],Updated[Conversation ID],0)))


When I do a count comparing number of current scores to updated there is a huge variance. It should be the same count.
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi, what version of excel are you using, this will be helpful for other readers.
 
Upvote 0
If Excel 2007 and above try something like:
Code:
=IFERROR(IF(INDEX(Updated[NPS],MATCH([Conversation ID],Updated[Conversation ID],0))=0,"",INDEX(Updated[NPS],MATCH([Conversation ID],Updated[Conversation ID],0))),"")
 
Upvote 0
Thank you so much this worked perfectly. I am used O365 by the way.

If Excel 2007 and above try something like:
Code:
=IFERROR(IF(INDEX(Updated[NPS],MATCH([Conversation ID],Updated[Conversation ID],0))=0,"",INDEX(Updated[NPS],MATCH([Conversation ID],Updated[Conversation ID],0))),"")
 
Upvote 0

Forum statistics

Threads
1,223,445
Messages
6,172,177
Members
452,446
Latest member
walkman99

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top